-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
39 lines (36 loc) · 985 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
37
38
39
import setuptools
import versioneer
if __name__ == "__main__":
setuptools.setup(
name='cmspythondev',
version=versioneer.get_version(),
description='Example project for the course',
author='Yi Yao',
url="https://github.com/yaoyi92/cms-python-dev",
license='BSD 3-C',
packages=setuptools.find_packages(),
install_requires=[
'jsonschema',
],
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,
)