-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathsetup.py
29 lines (27 loc) · 795 Bytes
/
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
from pathlib import Path
from setuptools import find_packages
from setuptools import setup
setup(
name='swagger-ui-py',
version='23.9.23',
python_requires='>=3.0.0',
description=(
'Swagger UI for Python web framework, '
'such as Tornado, Flask, Quart, Sanic and Falcon.'
),
long_description=Path(__file__).parent.joinpath('README.md').read_text(),
long_description_content_type='text/markdown',
license='Apache License 2.0',
packages=find_packages(),
package_data={
'swagger_ui': ['static/*', 'templates/*'],
},
install_requires=[
"jinja2>=2.0",
"packaging>=20.0",
"PyYaml>=5.0",
],
url='https://github.com/PWZER/swagger-ui-py',
author='PWZER',
author_email='[email protected]',
)