This repository has been archived by the owner on Jan 31, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathsetup.py
43 lines (39 loc) · 1.55 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
from setuptools import find_packages, setup
with open("requirements.txt") as install_requires_file:
install_requires = install_requires_file.read().strip().split("\n")
with open("requirements-dev.txt") as dev_requires_file:
dev_requires = dev_requires_file.read().strip().split("\n")
with open("README.md") as readme_file:
readme = readme_file.read()
setup(
name="prefect-recipes",
description="Contains common and extensible Prefect patterns to drive efficient workflows.", # noqa
license="Apache License 2.0",
author="Prefect Technologies, Inc.",
author_email="[email protected]",
keywords="prefect",
url="https://github.com/PrefectHQ/prefect-recipes",
long_description=readme,
long_description_content_type="text/markdown",
packages=find_packages(exclude=("tests", "docs")),
python_requires=">=3.7",
install_requires=install_requires,
extras_require={"dev": dev_requires},
entry_points={
"prefect.collections": [
"prefect_recipes = prefect_recipes",
]
},
classifiers=[
"Natural Language :: English",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Software Development :: Libraries",
],
)