-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
54 lines (50 loc) · 1.71 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
52
53
54
#!/usr/bin/env python3
import os
import sys
import setuptools
here = os.path.abspath(os.path.dirname(__file__))
readme = open(os.path.join(here, 'README.md')).read()
install_requires = ['configparser', 'prettytable', 'requests']
setuptools.setup(
name='360monitoringcli',
version='1.0.19',
description='360 Monitoring CLI',
long_description_content_type='text/markdown',
long_description=readme,
url='https://github.com/plesk/360monitoring-cli',
author='Jan Loeffler',
author_email='[email protected]',
maintainer='Jan Loeffler',
maintainer_email='[email protected]',
license='MIT',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: POSIX :: Linux',
'Operating System :: MacOS :: MacOS X',
'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',
'Topic :: System :: Monitoring',
],
keywords='360 system monitoring cli',
install_requires=install_requires,
packages=setuptools.find_packages(),
entry_points={
'console_scripts': [
'360monitoring=cli360monitoring.monitoring:main',
],
},
data_files=[('share/doc/360monitoring-cli', [
'360monitoring-example.ini',
'LICENSE',
'README.md',
])],
python_requires='>=3.0'
)