-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
56 lines (49 loc) · 1.11 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
44
45
46
47
48
49
50
51
52
53
54
55
56
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "pyxlmapper"
dependencies = [
"openpyxl>=3.1.5"
]
requires-python = ">= 3.8"
dynamic = ["version"]
authors = [
{name = "Ruslan Panasiuk", email = "[email protected]"},
]
description = "Mapper and parser for hierarchical spreadsheets"
readme = "README.md"
[project.optional-dependencies]
dev = [
"pytest>=7.0",
"pre-commit",
"black",
"mypy",
"hatch",
]
docs = [
]
[tool.hatch.version]
path = "src/pyxlmapper/__about__.py"
[tool.hatch.metadata]
# Additional metadata for Hatch
requires-python = ">=3.8"
keywords = ["xlsx", "xls", "openpyxl", "parser", "mapper"]
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)",
"Operating System :: OS Independent",
]
[tool.hatch.envs.default]
dependencies = [
"pytest",
]
features = ["dev"]
[tool.hatch.envs.test]
# Testing environment
dependencies = [
"pytest",
]
[tool.hatch.envs.test.scripts]
test = "pytest tests/"