forked from wolverton-research-group/qmpy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
42 lines (41 loc) · 1.14 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
from setuptools import setup, find_packages
setup(
name='qmpy',
version='1.2.0',
author='S. Kirklin',
author_email='[email protected]',
license='LICENSE.txt',
classifiers=["Programming Language :: Python :: 2.7"],
packages=find_packages(),
scripts=['bin/oqmd', 'bin/qmpy'],
url='http://pypi.python.org/pypi/qmpy',
description='Suite of computational materials science tools',
include_package_data=True,
long_description=open('README.md').read(),
install_requires=[
"Django == 1.8.18",
"PuLP",
"numpy < 1.17",
"scipy < 1.3",
"MySQL-python",
"matplotlib < 3.0",
"networkx < 2.3",
"pytest < 5.0",
"python-memcached",
"ase < 3.18",
"django-extensions < 1.6.8",
"lxml",
"pyspglib > 1.8.3",
"PyCifRW >= 4.3",
"pexpect",
"pyparsing",
"PyYAML",
"scikit-learn < 0.21",
"bokeh == 0.12.15",
"djangorestframework == 3.6.4",
"djangorestframework-xml",
"djangorestframework-yaml",
"django-crispy-forms",
"lark-parser"
],
)