-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
31 lines (29 loc) · 948 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
30
31
from setuptools import setup, find_packages
setup(
name='openapi_generator',
version='1.0.6',
description="A library to generate OpenAPI documentation from requests",
author='Wael Farhan',
author_email='wael34218@gmail.com',
python_requires='>=3.5',
classifiers=[
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.5',
"License :: OSI Approved :: MIT License",
],
keywords='flask framework base class generic',
packages=['openapi_generator'],
download_url='https://github.com/wael34218/python_openapi_generator/archive/v1.0.6.tar.gz',
url='https://github.com/wael34218/python_openapi_generator',
install_requires=[
'pyyaml',
'openapi-spec-validator',
'requests',
'pyOpenSSL'
],
test_suite='nose2.collector.collector',
extras_require={
'test': ['nose2'],
},
include_package_data=True,
)