forked from lancejnelson/aBuild
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
66 lines (64 loc) · 2.04 KB
/
setup.py
File metadata and controls
66 lines (64 loc) · 2.04 KB
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
#!/usr/bin/env python
try:
from setuptools import setup
args = {}
except ImportError:
from distutils.core import setup
print("""\
*** WARNING: setuptools is not found. Using distutils...
""")
from setuptools import setup
try:
from pypandoc import convert
read_md = lambda f: convert(f, 'rst')
except ImportError:
print("warning: pypandoc module not found, could not convert Markdown to RST")
read_md = lambda f: open(f, 'r').read()
from os import path
setup(name='aBuild',
version='1.0',
description='Automator for f.p. calcs and fitting.',
long_description= "" if not path.isfile("README.md") else read_md('README.md'),
author='Lance J Nelson',
author_email='lancejnelson@gmail.com',
url='https://github.com/lancejnelson/aBuild',
license='MIT',
setup_requires=['pytest-runner',],
tests_require=['pytest', 'numpy', 'phonopy'],
install_requires=[
"argparse",
"ase",
"pyparsing",
"termcolor",
"six",
"numpy",
# "phonopy",
"requests",
"beautifulsoup4",
"tqdm",
"html5lib",
"mpld3",
"phenum",
"h5py",
# "lazy_import",
"seekpath"
],
packages=['aBuild', 'aBuild.database', 'aBuild.fitting','aBuild.calculators'],
scripts=['aBuild/scripts/builder.py'],
package_data={'aBuild': []},
include_package_data=True,
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'Natural Language :: English',
'Operating System :: MacOS',
'Operating System :: Microsoft :: Windows',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Topic :: Scientific/Engineering',
],
)