forked from molmd/mispr
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
41 lines (38 loc) · 1.24 KB
/
setup.py
File metadata and controls
41 lines (38 loc) · 1.24 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
import os
import setuptools
module_dir = os.path.dirname(os.path.abspath(__file__))
setuptools.setup(
name="mispr",
version="0.0.4",
author="Rasha Atwi, Matthew Bliss",
author_email="rasha.atwi@stonybrook.edu, matthew.bliss@stonybrook.edu",
description="mispr contains FireWorks workflows for Materials Science",
long_description=open(os.path.join(module_dir, "README.md")).read(),
url="https://github.com/molmd/mispr",
install_requires=[
"numpy >= 1.21.1",
"pymongo >= 3.11.0",
"pymongo <= 3.12.0",
"matplotlib >= 3.3.1",
"networkx >= 2.5",
"fireworks >= 1.9.6",
"monty >= 4.0.0",
"scipy >= 1.5.2",
"pandas >= 1.1.2",
"pubchempy",
"parmed",
"mdproptools",
"dnspython"
],
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Intended Audience :: Information Technology",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering",
],
python_requires=">=3.6",
package_data={"": ["gaussian/data/*.bib", "lammps/data/*.json"]},
)