-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
45 lines (42 loc) · 1.19 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
42
43
44
45
import os
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
__version__ = "1.3.4"
gh_ref = os.environ.get("GITHUB_REF")
if gh_ref:
*_, tag = gh_ref.split("/")
__version__ = tag.replace("v", "")
setuptools.setup(
name='struct-bias',
version=__version__,
author="Diederick Vermetten, Niki van Stein",
author_email="[email protected]",
description="BIAS toolbox: Structural bias detection for continuous optimization algorithms",
long_description=long_description,
long_description_content_type="text/markdown",
packages=setuptools.find_packages(),
package_data={
'BIAS': ['install.r', 'models/*'],
},
python_requires='>=3.6',
install_requires=[
'numpy',
'tensorflow',
'shap',
'rpy2',
'scipy',
'pandas',
'scikit-learn',
'matplotlib',
'seaborn',
'statsmodels',
'regex',
'autokeras'
],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
)