-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
88 lines (78 loc) · 2.39 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
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
84
85
86
87
88
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "undate"
description = "library for working with uncertain, fuzzy, or partially unknown dates and date intervals"
readme = "README.md"
license = { text = "Apache-2" }
requires-python = ">= 3.9"
dynamic = ["version"]
dependencies = ["lark", "numpy"]
authors = [
{ name = "Rebecca Sutton Koeser" },
{ name = "Cole Crawford" },
{ name = "Julia Damerow" },
{ name = "Robert Casties" },
{ name = "Malte Vogl" },
]
# currently no maintainers separate from authors
keywords = [
"dates",
"dating",
"uncertainty",
"uncertain-dates",
"unknown",
"partially-known",
"digital-humanities",
]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Programming Language :: Python :: 3",
"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",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Scientific/Engineering",
"Topic :: Utilities",
"Typing :: Typed",
]
[project.optional-dependencies]
docs = ["sphinx>=7.0.0", "alabaster", "myst-parser", "myst-parser[linkify]"]
test = ["pytest>=7.2", "pytest-ordering", "pytest-cov"]
dev = [
"ruff",
"pre-commit>=2.20.0",
"twine",
"wheel",
"build",
"mypy",
"treon",
"undate[docs]",
"undate[test]",
]
all = ["undate", "undate[dev]"]
[project.urls]
Homepage = "https://github.com/dh-tech/undate-python"
Documentation = "https://undate-python.readthedocs.io/en/latest/"
Repository = "https://github.com/dh-tech/undate-python.git"
Issues = "https://github.com/dh-tech/undate-python/issues"
Changelog = "https://github.com/dh-tech/undate-python/blob/main/CHANGELOG.md"
[tool.hatch.version]
path = "src/undate/__init__.py"
[tool.hatch.build.targets.sdist]
include = ["src/undate/**/*.py", "src/undate/**/*.lark", "tests/**"]
[tool.pytest.ini_options]
pythonpath = "src/"
markers = [
"last : run marked tests after all others",
"first : run marked tests before all others",
]
[tool.mypy]
plugins = ["numpy.typing.mypy_plugin"]