-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
40 lines (37 loc) · 1.03 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
import setuptools
import versioneer
if __name__ == "__main__":
setuptools.setup(
name='molssidevops',
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
# version="1",
description='Example project for the MolSSI Bootcamp',
author='Matt Mansell',
url="https://github.com/mmansell7/molssidevops",
license='BSD 3-C',
packages=setuptools.find_packages(),
install_requires=[
],
extras_require={
'docs': [
'sphinx==1.2.3', # autodoc was broken in 1.3.1
'sphinxcontrib-napoleon',
'sphinx_rtd_theme',
'numpydoc',
],
'tests': [
'pytest>=3.0',
'pytest-cov',
'codecov'
],
'develop': [ # extra
'yapf',
'versioneer'
]
},
tests_require=[
'pytest',
],
zip_safe=True,
)