-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (29 loc) · 828 Bytes
/
setup.py
File metadata and controls
30 lines (29 loc) · 828 Bytes
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
from setuptools import setup, find_packages
setup(
name = 'spar',
packages = find_packages(exclude=('config')),
version = '0.0.7',
description = 'A CLI tool for generating controllable cluster trace.',
author = 'All-less',
author_email = 'all.less.mail@gmail.com',
url = 'https://github.com/All-less/trace-generator',
install_requires = [
'click',
'scipy',
'crayons',
'numpy'
],
entry_points = {
'console_scripts': [
'spar=spar.cli:main'
]
},
license="MIT",
keywords = [ 'cluster trace', 'cloud computing' ],
classifiers = [
"License :: OSI Approved :: MIT License",
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7'
],
include_package_data=True
)