forked from WMD-group/SMACT
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
38 lines (34 loc) · 1.45 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
#!/usr/bin/env python
__author__ = "Daniel W. Davies"
__copyright__ = "Copyright Daniel W. Davies, Adam J. Jackson, Keith T. Butler (2019)"
__version__ = "2.1"
__maintainer__ = "Daniel W. Davies"
__email__ = "[email protected]"
__date__ = "Jun 10 2019"
from setuptools import setup, Extension
import os
import unittest
module_dir = os.path.dirname(os.path.abspath(__file__))
if __name__ == "__main__":
setup(
name='SMACT',
version='2.1',
description='Semiconducting Materials by Analogy and Chemical Theory',
long_description=open(os.path.join(module_dir, 'README.md')).read(),
long_description_content_type='text/markdown',
url='https://github.com/WMD-group/SMACT',
author='Daniel W. Davies',
author_email='[email protected]',
license='GNU General Public License (GPL) v3',
packages=['smact','smact.tests'],
package_data={'smact': ['data/*.txt','data/*.csv','data/*.data',
'data/*.xlsx','data/*.json']},
zip_safe=False,
test_suite='smact.tests.test',
install_requires=['scipy','numpy','spglib', 'pymatgen', 'ase'],
classifiers=['Programming Language :: Python',
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Science/Research',
'Operating System :: OS Independent',
'Topic :: Scientific/Engineering']
)