-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (39 loc) · 1.04 KB
/
pyproject.toml
File metadata and controls
44 lines (39 loc) · 1.04 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
[project]
name = "ergani"
version = "1.0.1"
description = "Python SDK for the Greek government's Ergani API"
authors = [
{ name = "Paris Kasidiaris", email = "paris@withlogic.co" },
{ name = "George Margaritis", email = "george@withlogic.co" },
{ name = "Antonis Kalipetis", email = "akalipetis@withlogic.co" },
]
requires-python = ">=3.10,<4"
readme = "README.md"
license = "MIT"
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]
dependencies = ["requests>=2.31.0,<3"]
[dependency-groups]
dev = [
"mypy>=1.7.1,<2",
"ruff>=0.11.0,<0.12",
"types-requests>=2.31.0.10,<3",
"sphinx>=7.2.6,<8",
"furo>=2024.1.29,<2025",
"pytest>=9.0.3",
]
[tool.uv.build-backend]
module-root = ""
[build-system]
requires = ["uv_build>=0.10.0,<0.11.0"]
build-backend = "uv_build"
[tool.ruff]
target-version = "py310"
[tool.ruff.lint]
extend-select = ["I"]