-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
45 lines (41 loc) · 1.04 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
import io
from setuptools import find_packages
from setuptools import setup
VERSION = {}
with open("./docserver/__version__.py") as fp:
exec(fp.read(), VERSION)
with io.open('README.md', 'rt', encoding='utf8') as f:
readme = f.read()
setup(
name='docserver',
version=VERSION['__version__'],
url='http://github.com/uptake/updoc',
license='BSD 3-Clause',
maintainer='Hao-En Tsui',
maintainer_email='[email protected]',
description='An application for serving documentation in a cloud environment.',
long_description=readme,
packages=find_packages(),
include_package_data=True,
zip_safe=False,
install_requires=[
'boto3',
'botocore',
'flask',
'gunicorn',
'redis',
'sphinx',
'sphinxcontrib-napoleon',
'sphinx-rtd-theme',
'sphinxcontrib-programoutput',
'sphinxcontrib-websupport',
'pillow'
],
extras_require={
'test': [
'pytest',
'coverage',
'requests'
]
}
)