-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
41 lines (39 loc) · 1.08 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
#
# This file is part of lpfgaz
# by Tom Elliott for the Institute for the Study of the Ancient World
# (c) Copyright 2024 by New York University
# Licensed under the AGPL-3.0; see LICENSE.txt file.
#
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "lpfgaz"
version = "0.0.1"
authors = [
{ name="Tom Elliott", email="[email protected]" },
]
description = "Manage gazetteer data in the Linked Places format."
readme = "README.md"
requires-python = ">=3.12.6"
license = { text = "AGPL-3.0" }
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Operating System :: OS Independent",
]
dependencies = [
"airtight",
"pytest",
# "platformdirs",
# "python-slugify",
"textnorm",
#"validators",
"webiquette@git+https://github.com/isawnyu/webiquette.git"
]
[project.urls]
# "Homepage" = "https://github.com/pypa/sampleproject"
# "Bug Tracker" = "https://github.com/pypa/sampleproject/issues"
[tool.pytest.ini_options]
log_cli = true
log_cli_level = "INFO"