nanpa- Unnamed repository; edit this file 'description' to name the repository. |
git clone git://git.acid.vegas/-c.git |
Log | Files | Refs | Archive | README | LICENSE |
setup.py (1313B)
1 #!/usr/bin/env python 2 # North American Numbering Plan Administration (NANPA) API Client - Developed by acidvegas in Python (https://git.acid.vegas/nanpa) 3 # setup.py 4 5 from setuptools import setup, find_packages 6 7 8 with open('README.md', encoding='utf-8') as fh: 9 long_description = fh.read() 10 11 setup( 12 name='nanpa', 13 version='1.0.1', 14 author='acidvegas', 15 author_email='acid.vegas@acid.vegas', 16 description='North American Numbering Plan Administration (NANPA) API Client', 17 long_description=long_description, 18 long_description_content_type='text/markdown', 19 url='https://github.com/acidvegas/nanpa', 20 project_urls={ 21 'Source Code': 'https://github.com/acidvegas/nanpa', 22 }, 23 classifiers=[ 24 'Development Status :: 4 - Beta', 25 'Intended Audience :: Developers', 26 'License :: OSI Approved :: MIT License', 27 'Operating System :: OS Independent', 28 'Programming Language :: Python :: 3', 29 'Programming Language :: Python :: 3.6', 30 'Programming Language :: Python :: 3.7', 31 'Programming Language :: Python :: 3.8', 32 'Programming Language :: Python :: 3.9', 33 'Programming Language :: Python :: 3.10', 34 'Programming Language :: Python :: 3.11', 35 'Topic :: Software Development :: Libraries :: Python Modules', 36 'Topic :: Communications :: Telephony', 37 ], 38 packages=find_packages(), 39 python_requires='>=3.6', 40 )