-
Notifications
You must be signed in to change notification settings - Fork 45
/
setup.py
51 lines (49 loc) · 1.36 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
45
46
47
48
49
50
51
import os
from setuptools import setup, find_packages
with open(os.path.join(os.path.dirname(__file__), "qmpy", "VERSION.txt")) as fr:
version = fr.read().strip()
setup(
name="qmpy",
version=version,
author="The OQMD Development Team",
author_email="[email protected]",
license="LICENSE.txt",
classifiers=["Programming Language :: Python :: 3.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 < 2.3",
"PuLP",
"numpy",
"scipy",
"mysqlclient",
"matplotlib",
"networkx",
"pytest",
"python-memcached",
"ase",
"django-extensions > 2.2.5",
"lxml",
"spglib > 1.10",
"PyCifRW >= 4.3",
"pexpect",
"pyparsing",
"PyYAML",
"scikit-learn",
"bokeh",
"djangorestframework > 3.10.0",
"djangorestframework-xml",
"djangorestframework-yaml",
"djangorestframework-queryfields",
"djangorestframework-filters",
"django-crispy-forms",
"lark-parser",
"requests",
"pygraphviz",
"Jinja2 < 3.0",
],
)