-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
40 lines (38 loc) · 1.27 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
39
40
#!/usr/bin/env python
from setuptools import find_packages, setup
setup(
name="openapify",
version="0.6",
description=(
"Framework agnostic OpenAPI Specification generation for code lovers"
),
long_description=open("README.md", encoding="utf8").read(),
long_description_content_type="text/markdown",
platforms="all",
classifiers=[
"License :: OSI Approved :: Apache Software License",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Development Status :: 3 - Alpha",
],
license="Apache License, Version 2.0",
author="Alexander Tikhonov",
author_email="[email protected]",
url="https://github.com/Fatal1ty/openapify",
packages=find_packages(include=("openapify", "openapify.*")),
package_data={"openapify": ["py.typed"]},
python_requires=">=3.8",
install_requires=[
"apispec",
"mashumaro>=3.15",
],
extras_require={
"aiohttp": ["aiohttp"],
},
zip_safe=False,
)