-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (37 loc) · 890 Bytes
/
Copy pathpyproject.toml
File metadata and controls
44 lines (37 loc) · 890 Bytes
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 = "daflip"
version = "0.1.10"
description = "A modern Python CLI tool for converting data files between formats."
authors = [{ name = "Vincent Grégoire", email = " vincent.gregoire@gmail.com" }]
readme = "README.md"
license = "MIT"
requires-python = ">=3.9"
dependencies = [
"openpyxl>=3.1.5",
"pandas>=2.3.0",
"pyarrow>=20.0.0",
"python-dotenv>=1.1.0",
"rich>=14.0.0",
"typer>=0.16.0",
"xlrd>=2.0.2",
"xlsxwriter>=3.2.5",
]
[project.scripts]
daflip = "daflip.cli:main"
[tool.uv]
# uv-specific options can be added here
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-v --tb=short"
[build-system]
requires = ["uv", "setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[dependency-groups]
dev = [
"mkdocs>=1.6.1",
"mkdocs-material>=9.6.14",
"pre-commit>=4.2.0",
"pytest>=8.4.1",
"pytest-cov>=4.1.0",
"ruff>=0.12.0",
]