forked from raomuyang/cmd-oscillo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
57 lines (52 loc) · 1.54 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
55
56
57
# -*- coding: utf-8 -*-
try:
import setuptools
except ImportError:
import distutils.core as setuptools
__VERSION__ = '1.0.0'
with open("README.md", "r") as fh:
long_description = fh.read()
requirements = [
'psutil>=5.2.2',
'numpy>=1.13.1',
'PyYAML==3.13',
'terminaltables==3.1.0',
"futures==3.2.0",
'matplotlib'
]
test_requirements = ['mock']
packages = setuptools.find_packages(
exclude=['tests', 'tests.*'])
setuptools.setup(
name='oscillo',
description="Record the system load at the execution of the command line and display it graphically",
version=__VERSION__,
author='Rao Mengnan',
author_email="[email protected]",
maintainer='Rao Mengnan',
maintainer_email='[email protected]',
long_description=long_description,
long_description_content_type="text/markdown",
url='https://github.com/raomuyang/cmd-oscillo',
packages=packages,
package_data={'': ['LICENSE', 'requirements.txt']},
classifiers=[
'Environment :: Console',
'License :: OSI Approved :: Apache Software License',
'Intended Audience :: Customer Service',
'Intended Audience :: End Users/Desktop',
'Operating System :: OS Independent',
'Programming Language :: Python',
],
entry_points={
'console_scripts': [
'oscillo = oscillo:main',
]
},
platforms=['Independent'],
include_package_data=True,
zip_safe=False,
install_requires=requirements,
tests_require=test_requirements,
test_suite='tests'
)