czds- ICANN Centralized Zone Data Service Tool |
git clone git://git.acid.vegas/czds.git |
Log | Files | Refs | Archive | README | LICENSE |
setup.py (1576B)
1 #!/usr/bin/env python3 2 # ICANN API for the Centralized Zones Data Service - developed by acidvegas (https://git.acid.vegas/czds) 3 # setup.py 4 5 from setuptools import setup, find_packages 6 7 8 with open('README.md', 'r', encoding='utf-8') as fh: 9 long_description = fh.read() 10 11 12 setup( 13 name='czds-api', 14 version='1.3.8', 15 author='acidvegas', 16 author_email='acid.vegas@acid.vegas', 17 description='ICANN API for the Centralized Zones Data Service', 18 long_description=long_description, 19 long_description_content_type='text/markdown', 20 url='https://github.com/acidvegas/czds', 21 project_urls={ 22 'Bug Tracker': 'https://github.com/acidvegas/czds/issues', 23 'Documentation': 'https://github.com/acidvegas/czds#readme', 24 'Source Code': 'https://github.com/acidvegas/czds', 25 }, 26 classifiers=[ 27 'Development Status :: 5 - Production/Stable', 28 'Intended Audience :: Developers', 29 'License :: OSI Approved :: ISC License (ISCL)', 30 'Operating System :: OS Independent', 31 'Programming Language :: Python :: 3', 32 'Programming Language :: Python :: 3.6', 33 'Programming Language :: Python :: 3.7', 34 'Programming Language :: Python :: 3.8', 35 'Programming Language :: Python :: 3.9', 36 'Programming Language :: Python :: 3.10', 37 'Programming Language :: Python :: 3.11', 38 'Topic :: Internet', 39 'Topic :: Security', 40 'Topic :: Software Development :: Libraries :: Python Modules', 41 ], 42 packages=find_packages(), 43 python_requires='>=3.6', 44 entry_points={ 45 'console_scripts': [ 46 'czds=czds.__main__:cli_entry', 47 ], 48 }, 49 install_requires=[ 50 'aiohttp>=3.8.0', 51 'aiofiles>=23.2.1', 52 ], 53 )