-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathsetup.py
57 lines (56 loc) · 1.48 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
from setuptools import setup, find_packages
setup(
name="py_grama",
author="Zachary del Rosario",
author_email="zdelrosario@outlook.com",
version="0.3.7",
packages=[
"grama",
"grama.data",
"grama.dfply",
"grama.eval",
"grama.fit",
"grama.models",
"grama.tran",
"grama.psdr",
"grama.psdr.domains",
"grama.psdr.geometry",
],
package_data={"grama.data": ["*.csv"]},
license="MIT",
url="https://github.com/zdelrosario/py_grama",
description="A grammar of model analysis",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires=">=3.8, <3.10",
install_requires=[
"matplotlib",
"numpy>=1.15,<2.0",
"scipy>=1.10",
"pandas<=1.5.3",
"plotnine>=0.8.0",
"scipy",
"toolz",
"networkx",
],
extras_require={
"matminer": ["pymatgen==2021.2.8.1", "matminer"],
"sklearn": ["scikit-learn"],
"statsmodels": ["statsmodels"],
"pyDOE": ["pyDOE"],
"umap": ["umap-learn"],
"dev": [
"pymatgen==2021.2.8.1",
"matminer",
"scikit-learn",
"statsmodels",
"pyDOE",
"umap-learn",
],
}
)