-
Notifications
You must be signed in to change notification settings - Fork 11
/
setup.py
44 lines (40 loc) · 969 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
from setuptools import setup, find_packages
requirements = [
'ballet[all]==0.19.5',
'pyarrow',
'fsspec[s3]',
'mlblocks',
'scikit-learn',
]
extras = {
'analysis': [
'ffmetadata-py',
'funcy',
'pandas',
'tqdm',
],
'evaluation': [
'python-dotenv',
'timer_cm',
'matplotlib >= 3.4', # need to override min dep from copulas
],
'search': [
'dill',
'baytune',
'stacklog',
'xgboost',
]
}
setup(
name='fragile_families',
version='0.1.0-dev',
packages=find_packages(where='src', include=('fragile_families', 'fragile_families.*')),
package_dir={'': 'src'},
install_requires=requirements,
extras_require=extras,
# metadata
author='Micah Smith',
author_email='micahs@mit.edu',
description='A data science project built on the Ballet framework',
url='https://github.com/ballet/predict-life-outcomes',
)