-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
81 lines (76 loc) · 2.39 KB
/
setup.py
File metadata and controls
81 lines (76 loc) · 2.39 KB
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
77
78
79
80
81
from setuptools import setup, find_packages
from pathlib import Path
from setuptools import find_packages, setup
module_dir = Path(__file__).resolve().parent
with open(module_dir / "README.md") as f:
long_desc = f.read()
setup(
name="rxn-ca",
description="A library for implementing lattice automata",
use_scm_version={"version_scheme": "python-simplified-semver"},
setup_requires=["setuptools_scm"],
long_description_content_type="text/markdown",
author="Max Gallant",
author_email="mcgallant72@gmail.com",
license="modified BSD",
packages=find_packages("src"),
package_dir={"": "src"},
package_data={"rxn-ca": ["py.typed"]},
scripts=["bin/react", "bin/enumerate", "bin/build-library"],
zip_safe=False,
include_package_data=True,
install_requires=[
'numpy >= 1.21.5',
'matplotlib >= 3.5.1',
'tqdm >= 4.63.0',
'reaction-network@git+https://github.com/mcgalcode/reaction-network',
'pymatgen >= 2022.3.29',
'plotly >= 5.6.0',
'monty',
'pydantic',
'mp-api',
'pylattica >= 0.1.4',
'ray >= 2.0.0'
],
extras_require={
"docs": [
"sphinx==5.2.3",
"furo==2022.9.29",
"m2r2==0.3.3",
"ipython==8.5.0",
"nbsphinx==0.8.9",
"nbsphinx-link==1.3.0",
"autodoc_pydantic==1.7.2",
],
"tests": [
"pytest==7.1.3",
"pytest-cov==4.0.0",
"pydot==1.4.2",
],
"dev": ["pre-commit>=2.12.1"],
"vis": ["matplotlib", "pydot"],
"optimization": [
"baybe>=0.8.0",
"deap>=1.4.0",
],
"optimization-chem": [
"baybe[chem]>=0.8.0",
"deap>=1.4.0",
],
},
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Science/Research",
"Intended Audience :: System Administrators",
"Intended Audience :: Information Technology",
"Operating System :: OS Independent",
"Topic :: Other/Nonlisted Topic",
"Topic :: Scientific/Engineering",
],
python_requires=">=3.8",
tests_require=["pytest"],
)