forked from amueller/dabl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
23 lines (20 loc) · 805 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
import io
from setuptools import setup, find_packages
with io.open('README.md', encoding='utf_8') as fp:
readme = fp.read()
setup(name='dabl',
version='0.2.5',
description='Data Analysis Baseline Library',
author='Andreas Mueller',
url='https://github.com/amueller/dabl',
long_description=readme,
long_description_content_type='text/markdown; charset=UTF-8',
packages=find_packages(),
install_requires=["numpy", "scipy", "scikit-learn>=1.0", "pandas",
"matplotlib>=3.4", "seaborn"],
author_email='[email protected]',
package_data={'': ['datasets/titanic.csv',
'datasets/ames_housing.pkl.bz2',
'datasets/adult.csv.gz'
]},
)