-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
106 lines (97 loc) · 2.58 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
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
[build-system]
requires = [
'setuptools ~= 75.6',
]
build-backend = 'setuptools.build_meta'
[project]
version = '0.0.0'
name = 'betty_nginx'
description = 'Nginx for Betty provides nginx and Docker integration for your Betty sites'
readme = 'README.md'
license = {file = 'LICENSE.txt'}
authors = [
{name = 'Bart Feenstra', email = '[email protected]'},
]
requires-python = '~= 3.11'
dependencies = [
'betty ~= 0.4.0',
'docker ~= 7.1',
]
classifiers = [
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Programming Language :: Lua',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
'Programming Language :: Unix Shell',
'Operating System :: MacOS :: MacOS X',
'Operating System :: POSIX :: Linux',
'Operating System :: Microsoft :: Windows',
'Topic :: Internet',
'Topic :: Scientific/Engineering :: Visualization',
'Topic :: Sociology :: Genealogy',
'Topic :: Sociology :: History',
'Topic :: Software Development :: Code Generators',
'Natural Language :: Dutch',
'Natural Language :: English',
'Natural Language :: French',
'Natural Language :: German',
'Natural Language :: Ukrainian',
'Typing :: Typed ',
]
[project.urls]
Github = 'https://github.com/bartfeenstra/betty-nginx'
Twitter = 'https://twitter.com/BettyProject'
X = 'https://twitter.com/BettyProject'
[project.entry-points.'betty.command']
'nginx-serve' = 'betty_nginx._cli:NginxServe'
[project.entry-points.'betty.extension']
'nginx' = 'betty_nginx:Nginx'
[project.optional-dependencies]
setuptools = [
'twine ~= 6.0',
'wheel ~= 0.43',
]
test = [
'basedmypy ~= 2.5',
'coverage ~= 7.6',
'html5lib ~= 1.1',
'pytest ~= 8.3',
'pytest-asyncio ~= 0.23',
'pytest-mock ~= 3.14',
'ruff ~= 0.8',
'types-aiofiles ~= 24.1',
'types-html5lib ~= 1.1',
'types-requests ~= 2.32',
'virtualenv ~= 20.26',
'betty_nginx[setuptools]',
]
development = [
'pytest-repeat ~= 0.9',
'betty_nginx[test]',
]
ci = [
'codecov ~= 2.1',
'betty_nginx[test]',
]
[tool.setuptools.packages.find]
where = ['.']
exclude = [
'betty_nginx.tests',
'betty_nginx.tests.*',
]
[tool.setuptools.package-data]
betty_nginx = [
'py.typed',
# Assets.
'assets/**',
'extension/*/assets/**',
]
[tool.setuptools.exclude-package-data]
betty_nginx = [
'__pycache__',
]