-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
48 lines (45 loc) · 1.27 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
import setuptools
if __name__ == "__main__":
setuptools.setup(
name='molssi_api_flask',
version="0.3.0",
description='MolSSI code database',
author='Doaa Altarawy',
author_email='[email protected]',
url="https://github.com/doaa-altarawy/molssi_api_flask",
license='BSD-3C',
packages=setuptools.find_packages(),
install_requires=[
'Flask>0.12.3',
'WTForms==2.1',
],
extras_require={
'docs': [
'sphinx',
'sphinxcontrib-napoleon',
'sphinx_rtd_theme',
'numpydoc',
],
'tests': [
'pytest>=3.0',
'codecov',
'pytest-cov',
'pytest-pep8',
],
'develop': [
'Flask-DebugToolbar',
]
},
# tests_require=[
# 'pytest',
# 'pytest-cov',
# 'pytest-pep8',
# ],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.5',
],
zip_safe=True,
)