forked from hackingmaterials/matminer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
44 lines (40 loc) · 2.05 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
#!/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='matminer',
version='0.3.7',
description='matminer is a library that contains tools for data mining in Materials Science',
long_description=open(os.path.join(module_dir, 'README.md')).read(),
url='https://github.com/hackingmaterials/matminer',
author='Anubhav Jain',
author_email='[email protected]',
license='modified BSD',
packages=find_packages(),
package_data={'matminer.datasets': ['*.csv'],
'matminer.featurizers': ["*.yaml"],
'matminer.utils.data_files': ['*.csv', '*.tsv', '*.json', 'magpie_elementdata/*.table']},
zip_safe=False,
install_requires=['pymatgen>=2018.4.20', 'tqdm>=4.14.0', 'pandas>=0.20.1',
'pymongo>=3.4.0', 'pint>=0.8.1', 'six>=1.10.0',
'citrination-client>=4.0.0', 'plotly>=2.4.1',
'mdf_forge>=0.6.1', 'scikit-learn>=0.19.0',
'sympy>=1.1.1'],
extras_require={'mpds': ['jmespath>=0.9.3', 'ujson>=1.35', 'httplib2>=0.10.3', 'ase>=3.14.1'],
'plot': ['matplotlib>=2.0.0']},
classifiers=['Programming Language :: Python :: 2.7',
'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'],
scripts=[]
# scripts=[os.path.join('scripts', f) for f in os.listdir(os.path.join(module_dir, 'scripts'))]
)