-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
48 lines (43 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "django-teamized"
description = "Ein Tool für Zeitmanagement und Projektplanung"
readme = "README.md"
authors = [{ name = "Rafael Urben", email = "[email protected]" }]
maintainers = [{ name = "Rafael Urben", email = "[email protected]" }]
license = { file = "LICENSE" }
classifiers = [
"Environment :: Web Environment",
"Framework :: Django",
"Framework :: Django :: 4.2",
"Framework :: Django :: 5.0",
"Framework :: Django :: 5.1",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"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",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
]
requires-python = ">= 3.10"
dependencies = ["Django>=4.2"]
dynamic = ["version"]
[project.urls]
Homepage = "https://github.com/rafaelurben/django-teamized"
Docs = "https://github.com/rafaelurben/django-teamized#readme"
GitHub = "https://github.com/rafaelurben/django-teamized"
Issues = "https://github.com/rafaelurben/django-teamized/issues"
Funding = "https://github.com/sponsors/rafaelurben"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages]
find = { namespaces = false }
[tool.setuptools.dynamic]
version = { file = ["_version.txt"] }