forked from materialsproject/reaction-network
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
56 lines (51 loc) · 1.77 KB
/
Copy pathsetup.py
File metadata and controls
56 lines (51 loc) · 1.77 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
#!/usr/bin/env python
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="reaction-network",
use_scm_version=True,
setup_requires=["setuptools_scm"],
description=(
"Reaction-network is a Python package for predicting likely inorganic "
"chemical reaction pathways using graph theory."
),
long_description=long_desc,
long_description_content_type="text/markdown",
url="https://github.com/GENESIS-EFRC/reaction-network",
author="Matthew McDermott",
author_email="mcdermott@lbl.gov",
maintainer="Matthew McDermott",
license="modified BSD",
packages=find_packages("src"),
package_dir={"": "src"},
package_data={"rxn_network": ["py.typed"]},
zip_safe=False,
include_package_data=True,
install_requires=[
"setuptools",
"pymatgen>=2022.5.26",
"fireworks>=2.0.3",
"maggma>=0.46.1",
"numba>=0.55.2",
"ray>=1.12.1",
],
extra_requires={"demo": ["jupyter>=1.0.0"]},
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Scientific/Engineering :: Chemistry",
"Topic :: Software Development :: Libraries :: Python Modules",
],
tests_require=["pytest"],
python_requires=">=3.8",
)