forked from wolverton-research-group/qmpy
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
36 lines (35 loc) · 910 Bytes
/
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
from setuptools import setup, find_packages
setup(
name='qmpy-tri',
version='2022.7.21',
author='S. Kirklin',
maintainer_email='joseph.montoya@tri.global',
license='LICENSE.txt',
classifiers=["Programming Language :: Python :: 3.7"],
packages=find_packages(),
scripts=['bin/oqmd', 'bin/qmpy'],
url='http://pypi.python.org/pypi/qmpy-tri',
description='TRI-specific fork of qmpy',
include_package_data=True,
long_description=open('README.md').read(),
install_requires=[
"Django",
"PuLP",
"numpy",
"scipy",
"matplotlib",
"networkx",
"pytest",
"python-memcached",
"ase",
"django-extensions",
"lxml",
# "pyspglib==1.8.3.1",
# "PyCifRW>=4.3",
"pexpect",
"pyparsing",
"PyYAML",
"scikit-learn",
"bokeh==0.12.15"
],
)