-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
executable file
·64 lines (53 loc) · 1.4 KB
/
pyproject.toml
File metadata and controls
executable file
·64 lines (53 loc) · 1.4 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
[project]
name = "timescale-access"
version = "0.1.0"
description = "A reusable TimescaleDB / PostgreSQL access wrapper for Python using SQLAlchemy."
readme = "README.md"
requires-python = ">=3.9,<3.12"
authors = [{ name = "bxvtr" }]
license = { text = "MIT" }
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"sqlalchemy==2.0.40",
"pandas==2.2.3",
"python-dotenv==1.1.0",
"psycopg2-binary==2.9.10",
]
[project.optional-dependencies]
dev = [
"pytest==8.3.5",
"ipdb==0.13.13",
"debugpy==1.8.14",
"ruff==0.8.4",
]
docs = [
"sphinx",
"sphinx-autodoc-typehints",
"sphinx-rtd-theme",
"sphinx-rtd-dark-mode",
]
[project.urls]
Homepage = "https://github.com/bxvtr/timescale-access"
Source = "https://github.com/bxvtr/timescale-access"
Issues = "https://github.com/bxvtr/timescale-access/issues"
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
package-dir = { "" = "src" }
[tool.setuptools.packages.find]
where = ["src"]
[tool.pytest.ini_options]
python_files = "test_*.py"
[tool.ruff]
line-length = 90
exclude = ["docs", ".devcontainer"]
[tool.ruff.lint]
select = ["E", "F", "B", "I"]
ignore = ["E501"]