forked from dijxtra/simplepyged
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
28 lines (26 loc) · 797 Bytes
/
pyproject.toml
File metadata and controls
28 lines (26 loc) · 797 Bytes
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
[build-system]
requires = ["hatchling >= 1.26"]
build-backend = "hatchling.build"
[project]
name = "pyged"
version = "0.2.1"
authors = [
{ name='Hans Georg Schaathun', email="georg+github@schaathun.net" },
]
description = 'A simple Python GEDCOM parser'
readme = "README.md"
requires-python = ">=3.11"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Sociology :: Genealogy",
"Topic :: Software Development :: Libraries :: Python Modules",
]
license = "GPL-3.0"
license-files = ["LICENSE.txt"]
keywords=[ 'gedcom', 'genealogy', ]
[project.urls]
Homepage = "https://github.com/hgeorgsch/pyged"
Issues = "https://github.com/hgeorgsch/pyged/issues"