-
Notifications
You must be signed in to change notification settings - Fork 511
Expand file tree
/
Copy pathpyproject.toml
More file actions
144 lines (135 loc) · 4.44 KB
/
pyproject.toml
File metadata and controls
144 lines (135 loc) · 4.44 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
#
# Gramps - a GTK+/GNOME based genealogy program
#
# Copyright (C) 2012,2020,2025 Nick Hall
# Copyright (C) 2012 Rob G. Healey
# Copyright (C) 2012 Benny Malengier
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
#
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "gramps"
dynamic = ["version"]
description = "Gramps (Genealogical Research and Analysis Management Programming System)"
readme = "README.md"
license = "GPL-2.0-or-later"
license-files = ["COPYING"]
keywords = ["Genealogy", "Family Tree"]
authors = [
{name = "Donald N. Allingham", email = "don@gramps-project.org"},
]
maintainers = [
{name = "Gramps Development Team", email = "benny.malengier@gmail.com"}
]
requires-python = ">= 3.10"
dependencies = [
"orjson",
"requests",
"certifi",
]
classifiers = [
"Development Status :: 1 - Planning",
"Environment :: Console",
"Environment :: MacOS X",
"Environment :: Plugins",
"Environment :: Web Environment",
"Environment :: Win32 (MS Windows)",
"Environment :: X11 Applications :: GTK",
"Intended Audience :: Education",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Other Audience",
"Intended Audience :: Science/Research",
"Natural Language :: Arabic",
"Natural Language :: Bulgarian",
"Natural Language :: Catalan",
"Natural Language :: Chinese (Simplified)",
"Natural Language :: Croatian",
"Natural Language :: Czech",
"Natural Language :: Danish",
"Natural Language :: Dutch",
"Natural Language :: English",
"Natural Language :: Esperanto",
"Natural Language :: Finnish",
"Natural Language :: French",
"Natural Language :: German",
"Natural Language :: Greek",
"Natural Language :: Hebrew",
"Natural Language :: Hungarian",
"Natural Language :: Icelandic",
"Natural Language :: Italian",
"Natural Language :: Japanese",
"Natural Language :: Macedonian",
"Natural Language :: Norwegian",
"Natural Language :: Polish",
"Natural Language :: Portuguese",
"Natural Language :: Portuguese (Brazilian)",
"Natural Language :: Romanian",
"Natural Language :: Russian",
"Natural Language :: Serbian",
"Natural Language :: Slovak",
"Natural Language :: Slovenian",
"Natural Language :: Spanish",
"Natural Language :: Swedish",
"Natural Language :: Turkish",
"Natural Language :: Vietnamese",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Operating System :: Other OS",
"Operating System :: POSIX :: BSD",
"Operating System :: POSIX :: Linux",
"Operating System :: POSIX :: SunOS/Solaris",
"Operating System :: Unix",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Database",
"Topic :: Desktop Environment :: Gnome",
"Topic :: Education",
"Topic :: Scientific/Engineering :: Visualization",
"Topic :: Sociology :: Genealogy",
]
[project.optional-dependencies]
image = ["Pillow"]
i18n = ["PyICU"]
gui = ["PyGObject", "pycairo"]
all = ["Pillow",
"PyGObject",
"PyICU",
"imagesize",
"pycairo",
"pycountry",
]
testing = ["jsonschema", "mock", "lxml"]
[project.urls]
Homepage = "https://gramps-project.org"
Documentation = "https://gramps-project.org/wiki"
Source = "https://github.com/gramps-project/gramps"
Issues = "https://gramps-project.org/bugs"
Donate = "https://gramps-project.org/contribute"
[project.gui-scripts]
gramps = "gramps.grampsapp:main"
[tool.hatch.build.targets.wheel]
exclude = [
"test/",
"catalog/",
]
[tool.hatch.metadata.hooks.custom]
path = "scripts/version_hook.py"
[tool.hatch.build.targets.wheel.hooks.custom]
path = "scripts/build_hook.py"
[tool.hatch.build.targets.wheel.shared-data]
"build/share" = "share"