-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (21 loc) · 778 Bytes
/
setup.py
File metadata and controls
22 lines (21 loc) · 778 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from setuptools import setup
setup(name='system_monitor',
version='0.1',
author='Arthy Loganathan',
author_email='aloganat@gmail.com',
description=('Tool for monitoring system and draws chart with system monitor data'),
url='https://github.com/aloganat/system_monitor',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Programming Language :: Python :: 2.7',
'Topic :: Software Development :: Quality Assurance',
],
packages=['system_monitor'],
entry_points={
'console_scripts': [
'system_monitor = system_monitor.system_monitor:main',
]
},
install_requires=['pip', 'xlrd', 'xlwt', 'xlutils']
)