-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
58 lines (55 loc) · 1.89 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
52
53
54
55
56
57
58
from setuptools import find_packages, setup
import versioneer
with open("README.md", "r") as fp:
long_description = fp.read()
setup(
name="experitur",
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
author="Simon-Martin Schroeder",
author_email="[email protected]",
description="Automates machine learning and other computer experiments",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/moi90/experitur",
packages=find_packages(),
include_package_data=True,
install_requires=[
"Click",
"regex",
"tqdm",
"pyyaml",
"unavailable-object",
"filelock",
"cachetools",
"joblib", # joblib.dump/load for compressed checkpoints
"termcolor", # for colorful terminal output
"dictdiffer",
"numpy>=1.20",
"pandas>=1.3",
],
python_requires=">=3.8",
extras_require={
"tests": ["pytest", "pytest-cov", "pytest-benchmark"],
"optional": ["scikit-optimize", "scikit-learn", "matplotlib", "natsort"],
"docs": [
"sphinx >= 1.4",
"sphinx_rtd_theme",
"sphinxcontrib-programoutput",
"sphinx-autodoc-typehints>=1.10.0",
],
"dev": ["black", "mypy", "pydocstyle", "pylint", "flake8"],
},
entry_points={"console_scripts": ["experitur=experitur.cli:cli"]},
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
],
)