-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpyproject.toml
More file actions
84 lines (78 loc) · 2.29 KB
/
Copy pathpyproject.toml
File metadata and controls
84 lines (78 loc) · 2.29 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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name='django-letsencrypt'
version='6.0.2'
description="A simple Django app to handle Let's Encrypt ACME challenges."
readme = 'README.md'
license = 'Apache-2.0'
license-files = ['LICENSE']
requires-python = '>=3.10,<4'
authors = [{ name = 'Peter Urda', email = 'foss@urda.engineering' }]
classifiers = [
'Development Status :: 6 - Mature',
'Environment :: Web Environment',
'Framework :: Django',
'Framework :: Django :: 4',
'Framework :: Django :: 4.2',
'Framework :: Django :: 5',
'Framework :: Django :: 5.2',
'Framework :: Django :: 6',
'Framework :: Django :: 6.0',
'Framework :: Flake8',
'Framework :: Pytest',
'Framework :: tox',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'Intended Audience :: System Administrators',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
'Programming Language :: Python :: 3.14',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Internet',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Internet :: WWW/HTTP :: Site Management',
'Topic :: Security',
]
dependencies = [
'Django>=4.2.30',
]
[project.urls]
Homepage = 'https://github.com/urda/django-letsencrypt'
[dependency-groups]
dev = [
'coverage',
'flake8',
'pytest',
'pytest-cov',
'pytest-django',
'setuptools',
'tox',
'tox-uv',
'twine',
]
[tool.pytest.ini_options]
DJANGO_SETTINGS_MODULE = "example_project.settings_test"
pythonpath = [".", "example_project"]
python_files = ["tests.py", "test_*.py", "*_test.py"]
testpaths = ["letsencrypt", "tests"]
addopts = "-v"
[tool.coverage.run]
source = ["letsencrypt"]
omit = [
"letsencrypt/migrations/*",
"letsencrypt/admin.py",
"letsencrypt/apps.py",
"letsencrypt/tests.py",
"letsencrypt/urls.py",
]
[tool.setuptools.packages.find]
include = ['letsencrypt*']