-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
53 lines (48 loc) · 1.61 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
[tool.poetry]
name = "django-admin-notice"
version = "3.2.0"
description = "Show a floating notice banner above the Django admon interface"
authors = ["Jonathan Ehwald <[email protected]>"]
license = "MIT"
readme = "README.md"
packages = [{include = "admin_notice"}]
homepage = "https://github.com/DoctorJohn/django-admin-notice"
repository = "https://github.com/DoctorJohn/django-admin-notice"
documentation = "https://github.com/DoctorJohn/django-admin-notice"
classifiers = [
"Environment :: Web Environment",
"Framework :: Django",
"Framework :: Django :: 4.2",
"Framework :: Django :: 5.0",
"Framework :: Django :: 5.1",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
]
[tool.poetry.dependencies]
python = "^3.10"
django = ">=4.2"
[tool.poetry.group.dev.dependencies]
ruff = "^0.7.3"
pre-commit = "^4.0.1"
faker = "^30.8.2"
pytest = "^8.2.2"
pytest-cov = "^6.0.0"
pytest-django = "^4.1.0"
pytest-randomly = "^3.15.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.ruff.lint]
extend-select = ["I"]
[tool.pytest.ini_options]
DJANGO_SETTINGS_MODULE = "tests.project.project.settings"