forked from mongodb/docs-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
54 lines (51 loc) · 1.47 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
49
50
51
52
53
54
import giza
from setuptools import setup, find_packages
REQUIRES = [
'argh',
'docutils',
'hieroglyph',
'jinja2',
'libgiza>=0.2.1',
'onetimepass',
'polib',
'pyyaml',
'rstcloth>=0.2.5',
'sphinx-intl',
'sphinx==1.2.3',
'sphinxcontrib-httpdomain',
'wand',
'boto'
]
setup(
name='giza',
maintainer='tychoish',
maintainer_email='[email protected]',
description='Sphinx Documentation Build Automation',
version=giza.__version__,
license='Apache 2.0',
url='http://github.com/mongodb/docs-tools.git',
packages=find_packages(),
test_suite=None,
install_requires=REQUIRES,
package_data={'giza': ['quickstart/makefile', "quickstart/source/*", "quickstart/source/.gitignore", 'quickstart/config/*.yaml']},
extras_require={
'jira': ['jira-python', 'pyOpenSSL', 'ndg-httpsclient', 'pyasn1', 'requests>=2.1.0'],
'github': ['github3.py']
},
classifiers=[
'Environment :: Console',
'Intended Audience :: Developers',
'Topic :: Documentation',
'Topic :: Software Development :: Testing',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'License :: OSI Approved :: Apache Software License',
],
entry_points={
'console_scripts': [
'giza = giza.cmdline:main',
'scrumpy = giza.scrumpy:main [jira]',
'mdbpr = giza.github:main [github]'
],
},
)