forked from hackingmaterials/amset
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
37 lines (33 loc) · 1.38 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
from setuptools import setup, find_packages
import os
module_dir = os.path.dirname(os.path.abspath(__file__))
with open('README.rst', 'r') as file:
long_description = file.read()
if __name__ == "__main__":
setup(
name='amset',
version='0.1.0',
description='AMSET is Ab initio Mobility, Seebeck, and Transport',
long_description=long_description,
url='https://github.com/hackingmaterials/amset',
author='Alireza Faghaninia',
author_email='[email protected]',
license='modified BSD',
keywords='conductivity scattering seebeck dft vasp',
packages=find_packages(),
package_data={},
data_files=['LICENSE', 'requirements-optional.txt'],
zip_safe=False,
install_requires=['numpy', 'pymatgen'],
extras_require={'docs': ['sphinx']},
classifiers=['Programming Language :: Python :: 3.6',
'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'],
)