-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
38 lines (37 loc) · 1.12 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
import codecs
try:
from setuptools import setup, find_packages
except ImportError:
from distutils.core import setup
setup(
name='asyncapi-sphinx-ext',
version='1.0.1',
author='Martin Ortbauer',
author_email='[email protected]',
url='http://github.com/mortbauer/asyncapi-sphinx-ext',
license='MIT',
description='Sphinx extension for Pub/Sub Documentation',
py_modules=['asyncapi_sphinx_ext'],
long_description=codecs.open("README.rst", "r", "utf-8").read(),
install_requires=['sphinx>=2.4'],
extras_require = {
'yaml': ["ruamel.yaml"]
},
entry_points={
'sphinx.builders': [
'asynapi = asyncapi_sphinx_ext'
],
},
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Topic :: Documentation',
'Topic :: Text Processing',
'Topic :: Utilities',
],
)