-
Notifications
You must be signed in to change notification settings - Fork 27
/
setup.py
38 lines (33 loc) · 1.02 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
#!/usr/bin/env python
import os
import re
from setuptools import find_namespace_packages
from setuptools import setup
this_directory = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(this_directory, "README.md")) as f:
long_description = f.read()
package_name = "buenavista"
package_version = "0.5.0"
description = """Programmable Presto and Postgres Proxies"""
setup(
name=package_name,
version=package_version,
description=description,
long_description=long_description,
long_description_content_type="text/markdown",
author="Josh Wills",
author_email="[email protected]",
url="https://github.com/jwills/buenavista",
license="Apache",
packages=find_namespace_packages(include=["buenavista", "buenavista.*"]),
include_package_data=True,
install_requires=[
"fastapi>=0.109.0,<1.0.0",
"pydantic>=2,<3",
"sqlglot",
],
extras_require={
"duckdb": ["duckdb", "pyarrow"],
"postgres": ["psycopg", "psycopg-pool"],
},
)