-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
37 lines (36 loc) · 1.3 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
from setuptools import setup
setup(
name = 'autoscalingsim',
version = '0.1',
description = 'Autoscaling simulator Multiverse',
author = 'Vladimir Podolskiy',
author_email = '[email protected]',
packages = ['autoscalingsim'],
install_requires = [
'tqdm',
'pandas',
'uuid',
'matplotlib',
'networkx',
'python-igraph',
'urllib',
'tarfile',
'progressbar',
'statsmodels>=0.12.1',
'scipy',
'sklearn',
'prettytable',
'numpy==1.19.3 ; sys_platform == windows',
'tensorflow==2.4.0',
'https://github.com/kieferk/pymssa/tarball/master ; sys_platform == linux',
'https://github.com/Remit/pymssa/tarball/master ; sys_platform == windows',
'dcor==0.5.2',
'minepy==1.2.5'
],
scripts = [
'autoscalingsim-cl.py',
'cruncher-cl.py',
'trainer-cl.py',
'analysis.ipynb'
]
)