-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
43 lines (37 loc) · 1.14 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
[build-system]
requires = ["maturin>=1.8,<2.0"]
build-backend = "maturin"
[project]
name = "fastxlsx"
requires-python = ">=3.8,<3.13"
classifiers = [
"Programming Language :: Rust",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
dynamic = ["version"]
dependencies = ["numpy"]
authors = [{ name = "shuangluoxss", email = "shuangluoxss@qq.com" }]
maintainers = [{ name = "shuangluoxss", email = "shuangluoxss@qq.com" }]
description = "A high-performance Excel XLSX reader/writer for Python built with Rust."
readme = "README.md"
license = "MIT"
keywords = ["excel", "xlsx"]
[project.urls]
Homepage = "https://github.com/shuangluoxss/fastxlsx"
Repository = "https://github.com/shuangluoxss/fastxlsx"
Issues = "https://github.com/shuangluoxss/fastxlsx/issues"
Documentation = "https://fastxlsx.readthedocs.io/"
[tool.maturin]
features = ["pyo3/extension-module"]
[project.optional-dependencies]
bench = [
"pytest",
"pytest-benchmark",
"openpyxl",
"xlsxwriter",
"pyexcelerate",
"python-calamine",
"pylightxl",
]
dev = ["pytest", "ruff>=0.8.4"]