forked from henniggroup/MPInterfaces
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
37 lines (34 loc) · 1.37 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
import glob
import os
from setuptools import setup, find_packages
MPINT_DIR = os.path.dirname(os.path.abspath(__file__))
setup(
name="mpinterfaces",
version="1.2.0",
install_requires=["pymatgen>=3.6.0", "FireWorks>=1.3.0",
"custodian>=1.0.0", "pymatgen-db>=0.5.1",
"ase>=3.11.0", "six", "matplotlib>=1.5.1"],
extras_require={"babel": ["openbabel", "pybel"],
"remote": ["fabric"],
"doc": ["sphinx>=1.3.1", "sphinx-rtd-theme>=0.1.8"]
},
author="Kiran Mathew, Joshua Gabriel, Arunima Singh, Richard G. Hennig",
author_email="km468@cornell.edu",
description=(
"High throughput analysis of interfaces using VASP and Materials Project tools"),
license="MIT",
url="https://github.com/henniggroup/MPInterfaces",
packages=find_packages(),
long_description=open(
os.path.join(os.path.dirname(__file__), 'README.rst')).read(),
classifiers=[
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering",
],
scripts=glob.glob(os.path.join(MPINT_DIR, "scripts", "*"))
)