-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
38 lines (34 loc) · 821 Bytes
/
Copy pathsetup.py
File metadata and controls
38 lines (34 loc) · 821 Bytes
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
from setuptools import setup
test_deps = [
'tox',
'pytest',
'openapi-spec-validator',
'sanic',
'pytest-sanic',
]
extras = {
'test': test_deps,
}
setup(
name='openapi_doc',
version='1.0.0',
author='Vitaliy Nefyodov',
author_email='vitent@gmail.com',
url='https://github.com/lordent/openapi_doc',
description='OpenAPI v3 doc decorators',
long_description='',
keywords='openapi openapi3 openapiv3 swagger sanic',
packages=[
'openapi_doc',
'openapi_doc/base',
'openapi_doc/base/path',
'openapi_doc/spec',
],
install_requires=['marshmallow'],
tests_require=test_deps,
extras_require=extras,
classifiers=[
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3',
]
)