-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
setup.py
60 lines (54 loc) · 1.55 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
59
60
import os
from setuptools import setup
install_requires = [
"numpy >= 1.18",
"pandas >= 1.0",
"joblib >= 1.0",
]
extras_require = {
"base": ["prettytable", "graphviz"],
"ui": [
"rich",
],
"test": [
"pytest >= 6.0.0",
"hypothesis >= 6.0.0",
"ipython",
],
"demos": [
"scikit-learn",
],
}
extras_require["complete"] = sorted({v for req in extras_require.values() for v in req})
packages = [
"mandala",
"mandala.deps",
"mandala.deps.tracers",
"mandala.tests",
]
setup(
name="mandala",
version="v0.2.0-alpha",
author="Aleksandar (Alex) Makelov",
author_email="[email protected]",
description="A powerful and easy to use experiment tracking framework",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
url="https://github.com/amakelov/mandala",
license="Apache 2.0",
keywords="computational-experiments data-management machine-learning data-science",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.8",
],
packages=packages,
python_requires=">=3.8",
install_requires=install_requires,
extras_require=extras_require,
)