forked from manchenkoff/openapi3-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
39 lines (34 loc) · 1.22 KB
/
setup.py
File metadata and controls
39 lines (34 loc) · 1.22 KB
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
#!/usr/bin/env python
from os.path import dirname, join
from setuptools import find_packages, setup
from src import openapi_parser
description_file = join(dirname(__file__), "readme.md")
setup(
name=openapi_parser.__title__,
author=openapi_parser.__author__,
author_email=openapi_parser.__email__,
url="https://github.com/manchenkoff/openapi3-parser",
project_urls={
"Source": "https://github.com/manchenkoff/openapi3-parser",
},
version=openapi_parser.__version__,
packages=find_packages(where='src'),
package_dir={'': 'src'},
license="MIT",
description=openapi_parser.__description__,
long_description=open(description_file).read(),
long_description_content_type="text/markdown",
keywords="swagger, python, swagger-parser, openapi3-parser, parser, openapi3, swagger-api",
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Intended Audience :: Developers',
'Programming Language :: Python :: 3.9',
'Topic :: Software Development :: Libraries',
],
install_requires=[
"prance>=0.20.2",
"openapi-spec-validator>=0.2.9",
],
)