forked from tk0miya/sphinxcontrib-jsonschema
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
53 lines (50 loc) · 1.65 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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
long_desc = open('README.rst').read()
setup(
name='sphinxcontrib-opendataservices-jsonschema',
version='0.7.1',
url='https://github.com/OpenDataServices/sphinxcontrib-opendataservices-jsonschema',
license='BSD',
author='Takeshi KOMIYA & Open Data Services Co-operative',
author_email='[email protected]',
description='Sphinx extension to define data structure using JSON Schema',
long_description=long_desc,
zip_safe=False,
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Framework :: Sphinx :: Extension',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Topic :: Documentation',
'Topic :: Documentation :: Sphinx',
],
platforms='any',
packages=find_packages(),
include_package_data=True,
python_requires='>=3.8',
install_requires=[
'docutils',
'jsonref',
'jsonpointer',
'myst-parser',
'referencing',
'jscc',
],
extras_require={
'test': [
'flake8<6',
'lxml',
'defusedxml', # Not directly used, but require because of issue with sphinx.testing.fixtures plugin
'pytest',
],
},
namespace_packages=['sphinxcontrib'],
)