-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
58 lines (56 loc) · 2.18 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "django-liveconfigs"
version = "1.0.5"
description = "Simple powerful and convenient configs for Django"
readme = "README.md"
requires-python = ">=3.9"
license = {file = "LICENSE"}
authors = [
{name = "Evgenii Katsevman", email = "[email protected]"},
{name = "Mihail Mayorov", email = "[email protected]"},
{name = "Alexander Ignatov", email = "[email protected]"},
{name = "Alexander Mironov", email = "[email protected]"},
{name = "Timur Timerkhanov", email = "[email protected]"},
{name = "Ivan Shevyakov", email = "[email protected]"},
{name = "Vladilav Nechaev", email = "[email protected]"},
{name = "Denis Dudnik", email = "[email protected]"},
]
maintainers = [
{name = "Denis Dudnik", email = "[email protected]"}
]
keywords = ["django", "config", "easy config", "simple config", "liveconfigs"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Framework :: Django :: 3.2",
"Framework :: Django :: 4",
"Framework :: Django :: 4.0",
"Framework :: Django :: 4.1",
"Framework :: Django :: 4.2",
"Framework :: Django :: 5.0",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"Django>=3.2",
"Django<=5.1",
"djangorestframework>=3.13.1",
"typeguard>=3.0.0",
"typeguard<5.0.0",
"django-import-export>=2.8.0",
]
[project.urls]
"Homepage" = "https://github.com/factory5group/django-liveconfigs"
"Documentation" = "https://github.com/factory5group/django-liveconfigs/blob/main/README.md"
"Repository" = "https://github.com/factory5group/django-liveconfigs"
"Changelog" = "https://github.com/factory5group/django-liveconfigs/blob/main/CHANGELOG.md"
"Bug Tracker" = "https://github.com/factory5group/django-liveconfigs/issues"