-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
75 lines (65 loc) · 1.87 KB
/
pyproject.toml
File metadata and controls
75 lines (65 loc) · 1.87 KB
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
[build-system]
requires = ["setuptools", "build"]
build-backend = "setuptools.build_meta"
[project]
name = "api_dock"
version = "0.4.8"
description = "A flexible API gateway that allows you to proxy requests to multiple remote APIs and Databases"
readme = "README.md"
license = {text = "BSd 3-clause"}
authors = [
{name = "Brookie Guzder-Williams", email = "bguzder-williams@berkeley.edu"}
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"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",
"Topic :: Database",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Software Development :: Libraries",
"Topic :: Scientific/Engineering",
]
requires-python = ">=3.11"
dependencies = [
"click",
"fastapi>=0.117.1,<0.118",
"uvicorn>=0.37.0,<0.38",
"pyyaml>=6.0.3,<7",
"httpx>=0.28.1,<0.29",
"duckdb>=1.1.3,<2",
"flask",
"cryptography>=46.0.5,<47",
"boto3>=1.42.59,<2"
]
[project.optional-dependencies]
dev = [
"pycodestyle>=2.14.0,<3",
"ipykernel>=6.30.1,<7",
"jupyterlab>=4.4.9,<5",
"numpy>=2.3.3,<3",
"pandas>=2.3.2,<3",
"pytest>=9.0.2,<10"
]
[project.scripts]
api-dock = "api_dock.cli:main"
[tool.setuptools]
packages = ["api_dock", "config"]
[tool.setuptools.package-data]
config = ["*.yaml", "**/*.yaml"]
[tool.pixi.project]
channels = ["conda-forge"]
platforms = ["osx-arm64", "linux-64", "osx-64", "linux-aarch64"]
[tool.pixi.pypi-dependencies]
api_dock = { path = ".", editable = true }
[tool.pixi.environments]
default = { features = [] }
dev = { features = ["dev"] }
[tool.pixi.feature.dev.dependencies]
twine = "*"
[tool.pixi.feature.dev.pypi-dependencies]
build = "*"