-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
56 lines (50 loc) · 1.41 KB
/
pyproject.toml
File metadata and controls
56 lines (50 loc) · 1.41 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
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "sequor"
dynamic = ["version"]
description = "SQL-centric API integration platform"
readme = "README.md"
license = {text = "Apache-2.0"}
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent"
]
requires-python = ">=3.9"
# psycopg2-binary 2.9.10 cannot be installed with python 3.9
dependencies = [
"pyyaml>=6.0.2",
"jinja2>=3.1.6",
"ruamel.yaml>=0.18.10",
"sqlalchemy>=2.0.40",
"typer>=0.15.2",
"requests>=2.32.3",
"requests-toolbelt>=1.0.0",
"authlib>=1.5.2",
"psycopg2-binary>=2.9.0,<2.9.10",
"duckdb-engine>=0.17.0",
"posthog>=4.0.0"
]
[tool.setuptools.dynamic]
version = {attr = "sequor._version.__version__"} # Get version from _version.py
[tool.autopep8]
max_line_length = 1000
[project.urls]
"Homepage" = "https://sequor.dev/"
"GitHub" = "https://github.com/paloaltodatabases/sequor"
"Documentation" = "https://docs.sequor.dev/"
"Examples" = "https://github.com/paloaltodatabases/sequor-integrations"
"Newsletter" = "https://buttondown.com/sequor"
[project.scripts]
sequor = "sequor.cli:main"
[project.optional-dependencies]
dev = [
"pytest>=7.3.1",
"pytest-cov>=4.1.0",
"responses>=0.23.1",
"black>=23.3.0",
"build>=0.10.0",
"twine>=4.0.2"
]