-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (26 loc) · 988 Bytes
/
setup.py
File metadata and controls
28 lines (26 loc) · 988 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
from setuptools import setup, find_packages
with open("requirements.txt") as install_requires_file:
requirements = install_requires_file.read().strip().split("\n")
setup(
name="flows",
description="Custom module for Prefect flows",
license="Apache License 2.0",
author="Prefect Community",
author_email="anna@prefect.io",
keywords="prefect",
long_description_content_type="text/markdown",
version="1.0",
packages=find_packages(exclude=["tests"]),
python_requires=">=3.9",
# install_requires=requirements,
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.9",
"Programming Language :: Python :: 3.10",
"Topic :: Software Development :: Libraries",
],
)