-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
58 lines (52 loc) · 1.91 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
from pathlib import Path
import setuptools
def _read_requirements(filename):
return [
line.strip()
for line in Path(filename).read_text().splitlines()
if not line.startswith("#")
]
here = Path(__file__).parent.resolve()
long_description = (here / "README.md").read_text(encoding="utf-8")
if __name__ == "__main__":
setuptools.setup(
name="fastapi-cloudevents",
version="2.0.2",
author="Alexander Tkachev",
author_email="[email protected]",
description="FastAPI plugin for CloudEvents Integration",
long_description_content_type="text/markdown",
long_description=long_description,
home_page="https://github.com/sasha-tkachev/fastapi-cloudevents",
url="https://github.com/sasha-tkachev/fastapi-cloudevents",
keywords=[
"fastapi",
"cloudevents[pydantic]",
"ce",
"cloud",
"events",
"event",
"middleware",
"rest",
"rest-api",
"plugin",
"pydantic",
"fastapi-extension",
],
packages=setuptools.find_packages(),
package_data={"fastapi_cloudevents": ["py.typed"]},
install_requires=_read_requirements("requirements.txt"),
classifiers=[
"Intended Audience :: Information Technology",
"Intended Audience :: System Administrators",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Development Status :: 5 - Production/Stable",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
],
)