forked from hackingmaterials/atomate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
42 lines (38 loc) · 1.82 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
#!/usr/bin/env python
import os
from setuptools import setup, find_packages
module_dir = os.path.dirname(os.path.abspath(__file__))
if __name__ == "__main__":
setup(
name='atomate',
version='0.4.3',
description='atomate has implementations of FireWorks workflows for '
'Materials Science',
long_description=open(os.path.join(module_dir, 'README.rst')).read(),
url='https://github.com/hackingmaterials/atomate',
author='Anubhav Jain, Kiran Mathew',
author_email='[email protected], [email protected]',
license='modified BSD',
packages=find_packages(),
package_data={},
zip_safe=False,
install_requires=['FireWorks>=1.4.0', 'pymatgen>=4.6.2',
'custodian>=1.1.0', 'pymatgen-db>=0.5.1',
'monty>=0.9.5', 'tqdm>=4.7.4', 'six'],
extras_require={'rtransfer': ['paramiko>=1.15.0'],
'plotting': ['matplotlib>=1.5.2'],
'phonons': ['phonopy>=1.10.8']},
classifiers=['Programming Language :: Python :: 2.7',
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'Intended Audience :: System Administrators',
'Intended Audience :: Information Technology',
'Operating System :: OS Independent',
'Topic :: Other/Nonlisted Topic',
'Topic :: Scientific/Engineering'],
test_suite='nose.collector',
tests_require=['nose'],
scripts=[os.path.join('scripts', f) for f in os.listdir(os.path.join(module_dir, 'scripts'))]
)