-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·29 lines (28 loc) · 902 Bytes
/
setup.py
File metadata and controls
executable file
·29 lines (28 loc) · 902 Bytes
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
#!/usr/bin/env python
from setuptools import find_packages, setup
setup(
name="apipeline",
description="Python pipeline with asyncio support",
long_description=open("README.md").read().strip(),
long_description_content_type="text/markdown",
version="0.2.12",
license="BSD 3-Clause",
url="https://github.com/weedge/pipeline-py",
author="weedge",
author_email="weege007@gmail.com",
python_requires=">=3.10",
packages=find_packages(
include=[
"apipeline.*",
],
exclude=["*~"],
),
include_package_data=True,
install_requires=["pydantic >= 2.8.2"],
project_urls={
"Changes": "https://github.com/weedge/pipeline-py/releases",
"Code": "https://github.com/weedge/pipeline-py",
"Issue tracker": "https://github.com/weedge/pipeline-py/issues",
},
keywords=["pipeline", "asyncio"],
)