forked from materialsproject/emmet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
40 lines (36 loc) · 1.55 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
#!/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='emmet',
version="2018.06.07",
description='Emmet is a builder framework for the Materials Project',
long_description=open(os.path.join(module_dir, 'README.md'),encoding='utf-8').read(),
long_description_content_type="text/markdown",
url='https://github.com/materialsproject/emmet',
author='MP team',
author_email='matproj-develop@googlegroups.com',
license='modified BSD',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
install_requires=[
'atomate', 'pymatgen>=2018.4.20','maggma','monty',
'six', 'pydash', 'tqdm', 'matminer',
'prettyplotlib', 'pybtex', 'networkx', 'sumo',
],
classifiers=["Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
'Development Status :: 2 - Pre-Alpha',
'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'],
python_requires='>=3.6',
)