-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
61 lines (54 loc) · 1.48 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
[project]
name = "genweb"
description = "Generate family picture website"
readme = "README.md"
license = {file = "LICENSE"}
dynamic = ["version"]
requires-python = ">= 3.9"
dependencies = [
"PyYAML==6.0.2",
"Mako==1.3.5",
"python-gedcom==1.0.0",
"devopsdriver==0.1.48",
"boto3==1.35.54",
]
keywords = ["geneology", "familyhistory", "photos"]
classifiers=[
"Development Status :: 1 - Planning",
"Environment :: Console",
"Intended Audience :: Developers",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: The Unlicense (Unlicense)",
"Programming Language :: Python :: 3.10",
"Topic :: Utilities",
]
authors = [
{name = "Marc Page", email = "marcallenpage@gmail.com"},
{name = "Robert Page", email = "pagerk@gmail.com"},
]
[tool.setuptools.package-data]
"*" = ["*.mako"]
[tool.setuptools.packages.find]
include = ["genweb*"]
[project.optional-dependencies]
dev = [
"black>=24.3.0",
"pylint>=3.1.0",
]
test = [
"pytest>=8.1.1",
"coverage>=7.4.4",
]
doc = []
[project.urls]
Homepage = "https://github.com/marcpage/genweb"
Documentation = "https://github.com/marcpage/genweb"
Repository = "https://github.com/marcpage/genweb.git"
Issues = "https://github.com/marcpage/genweb/issues"
Changelog = "https://github.com/marcpage/genweb/releases"
[tool.setuptools.dynamic]
version = {attr = "genweb.__version__"}
[build-system]
requires = ["setuptools >= 69.2"]
build-backend = "setuptools.build_meta"