-
Notifications
You must be signed in to change notification settings - Fork 16
/
setup.py
29 lines (27 loc) · 1.05 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
from setuptools import setup, find_packages
with open("requirements.txt") as install_requires_file:
requirements = install_requires_file.read().strip().split("\n")
setup(
name="dataplatform",
description="Data Platform using Prefect for orchestration and observability",
license="Apache License 2.0",
author="Prefect Community",
author_email="hello@prefect.io",
keywords="prefect",
long_description_content_type="text/markdown",
version="1.0",
packages=find_packages(exclude=["tests"]),
python_requires=">=3.8",
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.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Software Development :: Libraries",
],
)