This repository has been archived by the owner on Jan 23, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
63 lines (57 loc) · 1.74 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
55
56
57
58
59
60
61
62
63
from setuptools import setup, find_packages
setup( # noqa: E131
name='ocdsdocumentationsupport',
version='0.0.0',
packages=find_packages(),
entry_points='''
[babel.extractors]
codelists_text = ocdsdocumentationsupport.babel_extractors:extract_codelist
jsonschema_text = ocdsdocumentationsupport.babel_extractors:extract_schema
''',
# The dependency trees are determined by `pipdeptree -fl`
install_requires=[
# Build
# It should be safe to track the versions in:
# https://github.com/OpenDataServices/sphinx-base/blob/master/requirements.txt
'sphinx-intl<1',
'Babel==2.4.0',
'pytz==2017.2',
'click==6.7',
'setuptools==38.4.0',
'six==1.10.0',
'Sphinx==1.5.1', # 1.5.2 breaks the translation of the sidebar menu
'alabaster==0.7.10',
'docutils==0.13.1',
'imagesize==0.7.1',
'Jinja2==2.9.6',
'MarkupSafe==1.0',
'Pygments==2.2.0',
'snowballstemmer==1.2.1',
# 'sphinxcontrib-jsonschema==0.9.3', # use forked version
'jsonpointer==1.10',
'jsonref==0.1',
# 'recommonmark==0.4.0', # use unreleased version
'CommonMark<0.6',
# Tests
'flake8==3.3.0',
'mccabe==0.6.1',
'pycodestyle==2.3.1',
'pyflakes==1.5.0',
# Utils
'ocdsextensionregistry>=0.0.4',
'json-merge-patch',
'transifex-client',
],
extras_require={
'test': [
'coveralls',
'pytest',
'pytest-cov',
],
'docs': [
'Sphinx==1.5.1',
'sphinx-autobuild',
'sphinx_rtd_theme',
],
},
)