-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathsetup.py
49 lines (46 loc) · 1.57 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
from setuptools import setup, find_packages
DESCRIPTION = "piro is software designed to assist in planning of synthesis pathways for inorganics"
LONG_DESCRIPTION = """
The piro software package enables prediction and planning of synthesis pathways
and determination of pareto-optimal frontiers for synthesis of
specific inorganic materials.
"""
setup(
name="piro",
version="2023.4.24",
packages=find_packages(),
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
long_description_content_type='text/markdown',
install_requires=["matminer==0.8.0",
"pymatgen==2023.12.18",
"plotly==5.11.0",
"pymongo==3.12.0",
],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
],
extras_require={
"tests": ["pytest",
"pytest-cov",
"coveralls"
],
"m3gnet": ["m3gnet==0.2.4"]
},
package_data={
"piro": ["*.pickle", "*.json"]
},
include_package_data=True,
author="AMDD - Toyota Research Institute",
author_email="[email protected]",
maintainer="Joseph Montoya",
maintainer_email="[email protected]",
# license="Apache",
keywords=[
"materials", "battery", "chemistry", "science",
"density functional theory", "energy", "AI", "artificial intelligence",
"sequential learning", "active learning"
],
)