-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·51 lines (49 loc) · 1019 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
from setuptools import setup
required_libraries = [
"allennlp",
"beautifulsoup4",
"convoys",
"cycler",
"faker",
"flair",
"gensim==3.4.0",
"geopandas",
"google_compute_engine",
"html2text",
"jupyter",
"kiwisolver",
"matplotlib",
"numpy",
"google_compute_engine",
"pandas",
"prettytable",
"pyparsing",
"pyspark",
"python-dateutil",
"pytorch-pretrained-bert>=0.6.0",
"pytz==2017.3",
"pyproj",
"regex==2018.01.10",
"requests",
"seaborn",
"scikit-learn",
"scikit-optimize",
"scipy",
"six",
"statsmodels",
"torch",
"tqdm>=4.29.1",
"wrapt",
]
setup(
name="feet",
version="0.1",
description="a declarative feature engineering pipeline based on sklearn",
url="http://github.com/jattenberg/feet",
author="jattenberg",
author_email="[email protected]",
license="MIT",
packages=["feet", "tests"],
zip_safe=False,
install_requires=required_libraries,
)