forked from SCM-NV/qmflows
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·50 lines (45 loc) · 1.64 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
#!/usr/bin/env python
from setuptools import setup
def readme():
with open('README.rst') as f:
return f.read()
setup(
name='qmflows',
version='0.2.1',
description='Automation of computations in quantum chemistry',
license='Apache 2.0',
url='https://github.com/SCM-NV/qmflows',
author='felipe zapata',
author_email='[email protected]',
keywords='chemistry workflows simulation materials',
long_description=readme(),
package_dir={'': 'src'},
packages=["qmflows", "qmflows.components",
"qmflows.data",
"qmflows.data.dictionaries",
"qmflows.examples",
"qmflows.hdf5",
"qmflows.packages", "qmflows.parsers",
"qmflows.templates"],
package_data={
"qmflows": ['data/templates/*json', 'data/dictionaries/*json']
},
classifiers=[
'Intended Audience :: Science/Research',
'Programming Language :: Python :: 3.5',
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Chemistry'
],
install_requires=['h5py', 'numpy', 'noodles==0.2.4', 'plams>=1.1.1',
'pymonad', 'pyparsing', 'six', 'tinydb',
'noodles[prov, xenon, numpy]', 'pyxenon',
'filelock', 'msgpack-python',
'sphinx_rtd_theme'],
extras_require={
'test': ['nose', 'coverage', 'nbsphinx'],
'doc': ['sphinx', 'sphinx_rtd_theme', 'nbsphinx']
},
dependency_links=[
"https://github.com/SCM-NV/plams/tarball/devel#egg=plams"]
)