forked from PhasesResearchLab/dfttk-2021
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
58 lines (50 loc) · 1.86 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
56
57
58
from setuptools import setup, find_packages
import os
import versioneer
module_dir = os.path.dirname(os.path.abspath(__file__))
def readme():
with open(os.path.join(module_dir, 'README.rst'), encoding='UTF-8') as f:
return f.read()
setup(
name='dfttk',
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
packages=find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests"]),
package_data = {'dfttk.structure_builders' : ["prototype_anrl.all", "aflow_prototype_db.json"],
'dfttk.analysis' : ['database/*']},
description='Density functional theory workflows for finite temperature thermodynamics based on atomate workflows. Created by the Phases Research Lab',
long_description=readme(),
install_requires=['atomate>=0.9.4', 'tinydb', 'phonopy', 'ase', 'pymatgen', 'numpy>=1.20.1'],
extras_require={
'dev': [
'sphinx',
'sphinx_rtd_theme',
'pytest',
'twine',
]
},
author='Brandon Bocklund',
author_email='[email protected]',
url='https://github.com/phasesresearchlab/dfttk',
license='MIT',
classifiers=[
# How mature is this project? Common values are
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Physics',
'Topic :: Scientific/Engineering :: Chemistry',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8'
],
entry_points={
'console_scripts': [
'dfttk = dfttk.scripts.run_dfttk:run_dfttk',
]
}
)