-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
59 lines (52 loc) · 1.7 KB
/
Copy pathpyproject.toml
File metadata and controls
59 lines (52 loc) · 1.7 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
[project]
name = "greatgramps"
version = "0.3.8"
description = "Family tree static site generator for Gramps databases"
authors = [
{ name = "Ben Nuttall", email = "ben@bennuttall.com" }
]
readme = "README.md"
license = "BSD-3-Clause"
license-files = ["LICENSE.txt"]
requires-python = ">=3.10"
keywords = ["genealogy", "gramps", "family-tree", "static-site-generator"]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
"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",
"Topic :: Internet :: WWW/HTTP :: Site Management",
"Topic :: Sociology :: Genealogy",
]
dependencies = [
"pydantic (>=2.0.0,<3.0.0)",
"pydantic-settings (>=2.14.1,<3.0.0)",
"pyyaml (>=6.0.3,<7.0.0)",
]
[project.optional-dependencies]
html = ["chameleon (>=4.6.0,<5.0.0)", "pillow (>=12.2.0,<13.0.0)"]
cli = ["typer (>=0.9.0)", "rich (>=13.0.0)"]
pdf = ["reportlab (>=4.0.0,<5.0.0)"]
[project.scripts]
grgr = "greatgramps.cli:app"
[project.urls]
Source = "https://github.com/bennuttall/greatgramps"
Issues = "https://github.com/bennuttall/greatgramps/issues"
Documentation = "https://greatgramps.readthedocs.io"
Changelog = "https://greatgramps.readthedocs.io/en/latest/changelog"
Demo = "https://gramps.bennuttall.com/I0000/people/I0000/"
[tool.poetry]
packages = [{include = "greatgramps"}]
include = ["LICENSE.txt"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[dependency-groups]
dev = [
"twine (>=6.2.0,<7.0.0)",
"sphinx (>=7.0)",
"sphinx-rtd-theme (>=3.0)",
]