-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
41 lines (37 loc) · 1.33 KB
/
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
from setuptools import setup, find_packages
import json
import os
try:
with open("versioning/minor_build.json", "r") as f:
minor_version = json.load(f)
except:
# for bugfixing
print(os.listdir())
print(os.getcwd())
os.system("cat equipy.egg-info/SOURCES.txt")
with open("README.rst", "r") as f:
long_description = f.read()
VERSION = f"0.0.{minor_version['buildNumber']}-alpha-dev"
DESCRIPTION = "Equipy is a tool for fast, online fairness calibration"
LONG_DESCRIPTION = long_description
setup(
name="equipy",
version=VERSION,
author="Agathe F, Suzie G, Francois H, Philipp R, Arthur C",
author_email="nocontact@email.com",
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
packages=find_packages(include=["equipy", "equipy.*"]),
install_requires=["numpy", "scipy", "scikit-learn",
"matplotlib", "pandas", "statsmodels",
"seaborn"],
setup_requires=["pytest-runner"],
tests_require=["pytest"],
keywords=["fairness", "wasserstein"],
classifiers= [
"Development Status :: 2 - Pre-Alpha",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
)