-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
47 lines (41 loc) · 1.35 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
44
45
46
47
from pathlib import Path
from typing import Dict
from setuptools import find_packages, setup
def get_version() -> str:
version: Dict[str, str] = {}
with open(Path(__file__).parent / "dagster_trino/version.py", encoding="utf8") as fp:
exec(fp.read(), version) # pylint: disable=W0122
return version["__version__"]
ver = get_version()
# dont pin dev installs to avoid pip dep resolver issues
pin = "" if ver == "1!0+dev" else f"=={ver}"
setup(
name="dagster-trino",
version=ver,
author="Andrea Pisoni",
author_email="[email protected]",
license="Apache-2.0",
description="Package for Trino-specific Dagster framework op and resource components.",
url="https://github.com/andreapiso/dagster-trino",
classifiers=[
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
],
packages=find_packages(),
exclude=["dagster_trino_tests*"],
include_package_data=True,
install_requires=[
"trino",
f"dagster{pin}",
f"dagit{pin}"
],
extras_require={
"pandas": ["pandas"],
"arrow": ["pyarrow"]
},
zip_safe=False,
)