generated from materialsproject/pymatgen-addon-template
-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
55 lines (50 loc) · 1.77 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
from setuptools import setup, find_namespace_packages
import os
SETUP_PTH = os.path.dirname(os.path.abspath(__file__))
with open(os.path.join(SETUP_PTH, "README.md")) as f:
desc = f.read()
setup(
name="pymatgen-io-openmm", # mypy: ignore
packages=find_namespace_packages(include=["pymatgen.io.*"]),
version="0.0.2",
install_requires=[
# "pymatgen>=2022.3.22",
# "openmm",
# "parmed",
# "numpy",
# "pytest",
# "openbabel",
# "rdkit",
# "openff-toolkit>=0.12.0",
# "packmol",
# "openmmforcefields",
],
extras_require={},
package_data={},
author="orion cohen",
author_email="orion@lbl.gov",
maintainer="orion cohen",
url="https://github.com/orioncohen/pymatgen-io-openmm",
license="BSD",
description="A set of tools for setting up OpenMM simulations of battery systems.",
long_description=desc,
keywords=["pymatgen"],
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)",
"Operating System :: POSIX",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Scientific/Engineering :: Chemistry",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)