|
| 1 | +# pylint: disable=C0111 |
| 2 | +from setuptools import setup |
| 3 | + |
| 4 | +with open("README.md", "r") as fh: |
| 5 | + README = fh.read() |
| 6 | + |
| 7 | +setup( |
| 8 | + name='spectrum-client', |
| 9 | + version='0.0.1', |
| 10 | + description='CA Spectrum Web Services API wrapper', |
| 11 | + long_description=README, |
| 12 | + long_description_content_type="text/markdown", |
| 13 | + author='Renato Orgito', |
| 14 | + author_email='orgito@gmail.com', |
| 15 | + maintainer='Renato Orgito', |
| 16 | + maintainer_email='orgito@gmail.com', |
| 17 | + url='https://github.com/orgito/spectrum-client', |
| 18 | + license='MIT', |
| 19 | + classifiers=[ |
| 20 | + 'Development Status :: 3 - Alpha', |
| 21 | + 'Intended Audience :: Developers', |
| 22 | + 'Intended Audience :: System Administrators', |
| 23 | + 'License :: OSI Approved :: MIT License', |
| 24 | + 'Operating System :: OS Independent', |
| 25 | + 'Programming Language :: Python :: 3.6', |
| 26 | + 'Topic :: Software Development :: Libraries', |
| 27 | + 'Topic :: System :: Monitoring', |
| 28 | + 'Topic :: System :: Networking :: Monitoring', |
| 29 | + ], |
| 30 | + keywords='spectrum-client network monitoring spectrum', |
| 31 | + packages=['spectrum_client'], |
| 32 | + install_requires=[], |
| 33 | + python_requires='>=3.6', |
| 34 | + project_urls={ |
| 35 | + 'Bug Reports': 'https://github.com/orgito/spectrum-client/issues', |
| 36 | + 'Source': 'https://github.com/orgito/spectrum-client', |
| 37 | + }, |
| 38 | +) |
0 commit comments