-
-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (50 loc) · 1.5 KB
/
pyproject.toml
File metadata and controls
57 lines (50 loc) · 1.5 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
52
53
54
55
56
57
[project]
name = "dataclass-csv"
version = "1.4.1"
description = "Map CSV data into dataclasses"
readme = "README.md"
license-expression = "BSD-3-Clause"
requires-python = ">=3.7"
dependencies = []
authors = [
{name = "Daniel Furtado"},
]
keywords = ["dataclass", "dataclasses", "csv", "dataclass-csv"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"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",
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Unix",
"Operating System :: POSIX",
"Environment :: Console",
]
[project.urls]
Homepage = "https://github.com/dfurtado/dataclass-csv"
"Issue Tracker" = "https://github.com/dfurtado/dataclass-csv/issues"
[dependency-groups]
dev = [
"pyright>=1.1.392.post0",
"pytest>=7.4.4",
]
# pyproject.toml
[tool.pytest.ini_options]
testpaths = [
"tests"
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["dataclass_csv"]