forked from cosmicBboy/themis-ml
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (33 loc) · 1010 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
from setuptools import setup
setup(
name="themis-ml",
version="0.0.4",
description="Fairness-aware Machine Learning",
author="Niels Bantilan",
author_email="[email protected]",
url="https://github.com/cosmicBboy/themis-ml",
download_url="https://github.com/cosmicBboy/themis-ml/archive/0.0.2.tar.gz",
keywords=["machine-learning", "fairness-aware", "social-bias"],
license="MIT",
packages=[
"themis_ml",
"themis_ml.datasets",
"themis_ml.linear_model",
"themis_ml.preprocessing",
"themis_ml.postprocessing",
],
package_data={
"themis_ml": [
"datasets/data/german_credit.csv",
"datasets/data/census_income_1994_1995_train.csv",
"datasets/data/census_income_1994_1995_test.csv"
]
},
install_requires=[
"scikit-learn >= 0.19.1",
"numpy >= 1.9.0",
"scipy >= 0.19.1",
"pandas >= 0.22.0",
"pathlib2",
]
)