-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
35 lines (31 loc) · 1.16 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
[tool.poetry]
name = "django-non-dark-admin"
version = "2.0.2"
description = "Disable dark mode in Django admin user interface in Django 3.2.x."
homepage = "https://github.com/DOOMer/django-non-dark-admin"
repository = "https://github.com/DOOMer/django-non-dark-admin"
authors = ["Artem Galichkin <[email protected]>"]
maintainers = ["Artem Galichkin <[email protected]>"]
packages = [ { include = "django_non_dark_admin", from = "src" } ]
readme = "README.rst"
license = "BSD"
keywords = ["django", "admin", 'dark', 'fix',]
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: BSD License",
"Operating System :: Unix",
"Environment :: Web Environment",
"Framework :: Django",
"Programming Language :: Python :: 3.2",
"Programming Language :: Python :: 3.6",
"Topic :: Software Development :: Libraries :: Python Modules"
]
include = ["AUTHORS.rst", "CHANGES.rst"]
[tool.poetry.dependencies]
python = "^3.9"
django = ">=3.2"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/DOOMer/django-non-dark-admin/issues"