forked from SaelKimberly/rxls
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
42 lines (40 loc) · 887 Bytes
/
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
[project]
name = "rxls"
version = "0.2.1"
description = "Reading both XLSX and XLSB files, fast and memory-safe, into PyArrow."
authors = [
{name = "SaelKimberly", email = "[email protected]"},
]
dependencies = [
"recordclass>=0.21.1",
"numpy>=1.24.4",
"pyarrow>=14.0.2",
"typing-extensions>=4.9.0",
]
requires-python = ">=3.8"
readme = "README.md"
license = {text = "MIT"}
[project.optional-dependencies]
feats = [
"numba>=0.58.1",
"tbb>=2021.11.0",
"polars>=0.20.4",
"pandas>=2.0.3",
"tqdm>=4.66.1",
]
tests = [
"pytest>=7.4.4",
]
bench = [
"notebook>=7.0.6",
"xlsx2csv>=0.8.2",
"lxml>=5.1.0",
"openpyxl>=3.1.2",
"pyxlsb>=1.0.10",
"python-calamine>=0.1.7",
"memory-profiler>=0.61.0",
"py-cpuinfo>=9.0.0",
]
[build-system]
requires = ["setuptools>=61", "wheel"]
build-backend = "setuptools.build_meta"