-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
46 lines (39 loc) · 850 Bytes
/
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
[build-system]
requires = [
'setuptools ~= 75.3',
]
build-backend = 'setuptools.build_meta'
[project]
name = 'ancestry'
version = '0.0.0'
authors = [
{name = 'Bart Feenstra', email = '[email protected]'},
]
requires-python = '~= 3.12'
dependencies = [
'betty ~= 0.4.0',
'betty-nginx ~= 0.1.0',
]
[project.entry-points.'betty.command']
'report' = 'ancestry.cli:Report'
[project.entry-points.'betty.extension']
'ancestry' = 'ancestry.extension:Ancestry'
[project.optional-dependencies]
development = [
'basedmypy ~= 2.6',
'pytest ~= 8.3',
'pytest-asyncio ~= 0.24',
'ruff ~= 0.9.1',
'types-click ~= 7.1, >= 7.1.8',
]
[tool.setuptools.packages.find]
where = ['.']
[tool.setuptools.package-data]
betty = [
'py.typed',
'assets/**',
]
[tool.setuptools.exclude-package-data]
betty = [
'__pycache__',
]