-
Notifications
You must be signed in to change notification settings - Fork 23
/
setup.py
37 lines (33 loc) · 905 Bytes
/
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, Command
import os
import sys
setup(name='datagene',
version='0.0.3',
description='Data Comparison Toolbox with Transformation and Similarity Analysis',
url='https://github.com/firmai/datagene',
author='snowde',
author_email='[email protected]',
license='MIT',
packages=['datagene'],
install_requires=[
"pandasvault",
"scikit-image==0.15",
"scikit-image",
"deltapy",
"esig",
"ImageHash",
"porespy",
"shap",
"pyts",
"tensorly",
"pandas",
"scikit-learn",
"scipy",
"statsmodels",
"numpy",
"google",
"tensorflow",
"keras",
"opencv-python"
],
zip_safe=False)