-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
100 lines (89 loc) · 2.33 KB
/
pyproject.toml
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
[tool.poetry]
name = "data7"
version = "0.9.0"
description = "Data7 streams CSV/Parquet datasets over HTTP from SQL queries."
authors = ["Julien Maupetit <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://jmaupetit.github.io/data7/"
repository = "https://github.com/jmaupetit/data7"
documentation = "https://jmaupetit.github.io/data7/"
keywords = ["database", "dataset", "SQL", "Parquet", "CSV", "HTTP"]
classifiers = [
"Development Status :: 3 - Alpha",
"Topic :: Database",
"Topic :: Internet :: WWW/HTTP :: WSGI",
]
[tool.poetry.dependencies]
dynaconf = "^3.2.5"
pandas = "^2.2.2"
pyarrow = "^19.0.0"
pyinstrument = "^5.0.0"
python = "^3.11"
sentry-sdk = {extras = ["starlette"], version = "^2.7.1"}
sqlalchemy = "^2.0.30"
starlette = "^0.45.2"
typer = "^0.15.1"
uvicorn = {extras = ["standard"], version = "^0.34.0"}
[tool.poetry.group.dev.dependencies]
asyncpg = "^0.30.0"
black = ">=24.4.2,<26.0.0"
databases = {extras = ["aiosqlite"], version = "^0.9.0"}
matplotlib = "^3.10.0"
mkdocs-material = "^9.5.27"
mypy = "^1.13.0"
psycopg = {extras = ["binary", "pool"], version = "^3.2.1"}
pytest = "^8.2.2"
pytest-cov = "^6.0.0"
pytest-httpx = ">=0.30,<0.36"
ruff = "^0.9.1"
types-pyyaml = "^6.0.12.20240311"
[tool.poetry.scripts]
data7 = "data7.cli:cli"
# Third party packages configuration
[tool.coverage.run]
omit = []
[tool.pytest.ini_options]
addopts = "-v --cov-report term-missing --cov=data7"
python_files = [
"test_*.py",
"tests.py",
]
testpaths = [
"tests",
]
[tool.ruff]
# Exclude a variety of commonly ignored directories.
exclude = []
[tool.ruff.lint]
select = [
"B", # flake8-bugbear
"C4", # flake8-comprehensions
"D", # pydocstyle
"E", # pycodestyle error
"F", # Pyflakes
"I", # Isort
"ISC", # flake8-implicit-str-concat
"PLC", # Pylint Convention
"PLE", # Pylint Error
"PLR", # Pylint Refactor
"PLW", # Pylint Warning
"RUF100", # Ruff unused-noqa
"S", # flake8-bandit
"T20", # flake8-print
"W", # pycodestyle warning
]
[tool.ruff.lint.per-file-ignores]
"tests/*" = [
"S101", # use of assert
]
[tool.ruff.lint.pydocstyle]
# Use Google-style docstrings.
convention = "google"
[tool.mypy]
files = "./**/*.py"
exclude = []
ignore_missing_imports = true
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"