forked from dimastbk/python-calamine
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (45 loc) · 1.23 KB
/
pyproject.toml
File metadata and controls
51 lines (45 loc) · 1.23 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
[project]
name = "python-calamine"
description = "Python binding for Rust's library for reading excel and odf file - calamine"
readme = "README.md"
requires-python = ">=3.10"
license = "MIT"
authors = [{ name = "Dmitriy", email = "dimastbk@proton.me" }]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Rust",
"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",
]
dynamic = ["version"]
[dependency-groups]
dev = [
"maturin~=1.0",
"pre-commit~=4.3",
"mypy~=1.19.0",
"pytest~=9.0",
"pandas[excel]>=2.2",
]
[project.urls]
homepage = "https://github.com/dimastbk/python-calamine"
source = "https://github.com/dimastbk/python-calamine"
[tool.isort]
include_trailing_comma = true
line_length = 88
multi_line_output = 3
profile = "black"
[tool.mypy]
python_version = "3.10"
packages = ["python_calamine"]
ignore_missing_imports = false
disallow_untyped_defs = true
check_untyped_defs = true
[build-system]
requires = ["maturin>=1,<2"]
build-backend = "maturin"
[tool.maturin]
module-name = "python_calamine._python_calamine"
python-source = "python"