forked from amakelov/mandala
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
76 lines (70 loc) · 1.74 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
import os
from setuptools import setup
install_requires = [
"numpy >= 1.18",
"pandas >= 1.0",
"joblib >= 1.0",
"pypika >= 0.48",
"pyarrow >= 8.0.0",
]
extras_require = {
"base": [],
"performance": [
"cityhash >= 0.2.2", # for faster content hashing
],
"integrations": [
"dask[complete]",
],
"ui": [
"rich",
],
"test": [
"pytest >= 6.0.0",
"hypothesis >= 6.0.0",
"ipython",
"mongomock",
"duckdb >= 0.6",
],
"demos": [
"torch",
"scikit-learn",
],
"server": [
"pymongo",
],
}
extras_require["complete"] = sorted({v for req in extras_require.values() for v in req})
packages = [
"mandala",
"mandala.core",
"mandala.deps",
"mandala.deps.tracers",
"mandala.queries",
"mandala.storages",
"mandala.storages.rel_impls",
"mandala.storages.remote_impls",
"mandala.ui",
"mandala.tests",
]
setup(
name="mandala",
version="0.1.0",
description="",
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 :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.8",
],
packages=packages,
long_description=open("README.md").read() if os.path.exists("README.md") else "",
python_requires=">=3.8",
install_requires=install_requires,
extras_require=extras_require,
)