-
Notifications
You must be signed in to change notification settings - Fork 7
/
pyproject.toml
73 lines (67 loc) · 1.98 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
[build-system]
requires = ["hatchling", "hatch-fancy-pypi-readme"]
build-backend = "hatchling.build"
[project]
version = "1.2.2"
name = "pyramid_skosprovider"
dynamic = ["readme"]
authors = [
{ name = "Flanders Heritage Agency", email = "[email protected]" },
]
license = "MIT"
description = "ntegration of skosprovider in pyramid"
requires-python = ">=3.10,<3.13"
keywords = ["pyramid", "skos", "skosprovider", "vocabularies", "thesauri"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python",
"Framework :: Pyramid",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: WSGI :: Application",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"pyramid==2.0.2",
"skosprovider==1.2.0",
]
[project.urls]
History = "https://github.com/OnroerendErfgoed/pyramid_skosprovider/blob/master/HISTORY.rst"
Tracker = "https://github.com/OnroerendErfgoed/pyramid_skosprovider/issues"
Source = "https://github.com/OnroerendErfgoed/pyramid_skosprovider"
Documentation = "https://pyramid-skosprovider.readthedocs.io/en/latest/"
[project.optional-dependencies]
dev = [
"uv==0.4.11",
# Documentation
"sphinx==7.4.7",
"sphinxcontrib-httpdomain==1.8.1",
"pygments==2.18.0",
"sphinx_rtd_theme==2.0.0",
# Linting
"flake8==7.1.1",
# Unit testing
"pytest==8.3.3",
"webtest==3.0.1",
"pytest-cov==5.0.0",
"coveralls==4.0.1",
"responses==0.25.3",
]
##
# Build tool specific
##
[tool.hatch.build.targets.wheel]
# In the wheel we want to have pyramid_skosprovider in the root as python module.
only-include = [
"/pyramid_skosprovider",
]
[tool.hatch.metadata]
# This allows us to use github links as dependencies
allow-direct-references = true
[tool.hatch.metadata.hooks.fancy-pypi-readme]
content-type = "text/x-rst"
fragments = [
{ path = "README.rst" },
{ path = "HISTORY.rst" },
]