-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
executable file
·51 lines (48 loc) · 1.8 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# pylint: disable=C0111
from os.path import join, dirname
from setuptools import setup
here = dirname(__file__)
about = {}
with open(join(here, 'spectrum_client', '__version__.py'), 'r') as fh:
exec(fh.read(), about)
with open(join(here, 'README.md'), 'r') as fh:
README = fh.read().strip()
setup(
name=about['__title__'],
version=about['__version__'],
description=about['__description__'],
long_description=README,
long_description_content_type='text/markdown',
author=about['__author__'],
author_email=about['__author_email__'],
url=about['__url__'],
license=about['__license__'],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Topic :: Software Development :: Libraries',
'Topic :: System :: Monitoring',
'Topic :: System :: Networking :: Monitoring',
],
keywords='spectrum-client network monitoring spectrum',
packages=['spectrum_client'],
setup_requires=['setuptools>=40.2.0'],
install_requires=['requests'],
python_requires='>=3.4',
project_urls={
'Bug Reports': 'https://github.com/orgito/spectrum-client/issues',
'Source': 'https://github.com/orgito/spectrum-client',
},
)