-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
45 lines (43 loc) · 1.1 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
# -*- coding: utf-8 -*-
from distutils.core import setup
from setuptools import find_packages
setup(
name='fractalis',
packages=find_packages(),
author='Sascha Herzinger',
author_email='[email protected]',
url='https://git-r3lab.uni.lu/Fractalis/fractalis',
version='1.3.1',
license='Apache2.0',
include_package_data=True,
python_requires='>=3.6.0',
install_requires=[
'Flask==0.12.2',
'flask-cors==3.0.3',
'Flask-Script==2.0.6',
'flask-request-id-middleware==1.1',
'flask-compress==1.4.0',
'typing==3.6.2',
'jsonschema==2.6.0',
'celery[redis]==4.1.0',
'kombu==4.1.0',
'redis==2.10.6',
'numpy==1.13.3',
'scipy==0.19.1',
'pandas==0.20.3',
'scikit-learn==0.19.1',
'lifelines==0.14.3',
'requests==2.18.4',
'PyYAML==3.12',
'pycryptodomex==3.4.7',
'rpy2==2.9.3',
'tzlocal',
'flake8',
'pytest',
'pytest-runner',
'pytest-cov',
'responses',
'twine',
'pyjwt==1.6.3'
]
)