-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
51 lines (51 loc) · 1.86 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
46
47
48
49
50
51
from setuptools import setup, find_packages
version="1.2.1"
setup(
name="robert",
packages=find_packages(exclude=["tests"]),
package_data={"robert": ["model_params/*","report/*"]},
version=version,
license="MIT",
description="Refiner and Optimizer of a Bunch of Existing Regression Tools",
long_description="Documentation in Read The Docs: https://robert.readthedocs.io",
long_description_content_type="text/markdown",
author="Juan V. Alegre Requena, David Dalmau",
author_email="[email protected]",
keywords=[
"workflows",
"machine learning",
"cheminformatics",
"data curation",
"prediction",
"automated",
],
url="https://github.com/jvalegre/robert",
download_url=f"https://github.com/jvalegre/robert/archive/refs/tags/{version}.tar.gz",
classifiers=[
"Development Status :: 5 - Production/Stable", # Chose either "3 - Alpha", "4 - Beta" or "5 - Production/Stable" as the current state of your package
"Intended Audience :: Developers", # Define that your audience are developers
"Topic :: Software Development :: Build Tools",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.7", # Specify which python versions you want to support
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
],
install_requires=[
"PyYAML==6.0.1",
"matplotlib==3.9.2",
"pandas==2.2.2",
"numpy==1.26.4",
"progress==1.6",
"seaborn==0.13.2",
"scipy==1.14.0",
"scikit-learn==1.5.1",
"hyperopt==0.2.7",
"numba==0.60.0",
"shap==0.45.1",
"mapie==0.8.6",
"weasyprint==62.3"
],
python_requires=">=3.10",
include_package_data=True,
)