-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
36 lines (34 loc) · 1.31 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
from adagio_version import __version__
from setuptools import find_packages, setup
with open("README.md") as f:
LONG_DESCRIPTION = f.read()
setup(
name="adagio",
version=__version__,
packages=find_packages(exclude=("tests",)),
description="The Dag IO Framework for Fugue projects",
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
license="Apache-2.0",
author="Han Wang",
author_email="goodwanghan@gmail.com",
keywords="adagio dag directed acyclic graph workflow",
url="http://github.com/fugue-project/adagio",
install_requires=["triad>=0.6.1"],
extras_require={},
classifiers=[
# "3 - Alpha", "4 - Beta" or "5 - Production/Stable"
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3 :: Only",
],
python_requires=">=3.8",
)