-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
83 lines (72 loc) · 1.94 KB
/
pyproject.toml
File metadata and controls
83 lines (72 loc) · 1.94 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
[build-system]
requires = ["hatchling >= 1.26"]
build-backend = "hatchling.build"
[project]
name = "tabularize"
version = "0.0.3"
requires-python = ">=3.9"
authors = [
{name = "Jayson Fong", email = "jayson.fong@gatech.edu"}
]
description = "Parse semi-structured text into Python dictionaries without well-defined schemas"
readme = "README.md"
license = { text = "MIT" }
license-files = ["LICENSE"]
classifiers = [
"Development Status :: 1 - Planning",
"Programming Language :: Python",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: System Administrators",
"Topic :: File Formats",
"Programming Language :: Python",
"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",
"Topic :: Software Development :: Libraries",
"Typing :: Typed"
]
[project.urls]
Homepage = "https://github.com/Jayson-Fong/tabularize"
Issues = "https://github.com/Jayson-Fong/tabularize/issues"
[dependency-groups]
test = [
"pytest",
"pytest-cov",
]
dev = [
"black",
"ruff",
"mypy",
"pytest",
"pytest-cov"
]
[tool.hatch.build]
packages = ["src/tabularize"]
exclude = ["tests"]
[tool.pytest.ini_options]
addopts = "-v --cov=tabularize --cov-report=term-missing"
testpaths = ["tests"]
pythonpath = ["src"]
[tool.mypy]
warn_unused_configs = true
disallow_untyped_defs = true
ignore_missing_imports = true
strict_optional = true
mypy_path = ["src", "tests"]
[tool.ruff]
src = ["src"]
fix = true
show-fixes = true
output-format = "full"
[tool.coverage.run]
branch = true
source = ["tabularize", "tests"]
[tool.coverage.paths]
source = ["src", "*/site-packages"]
[project.scripts]
tabularize = "tabularize.main:main"