-
-
Notifications
You must be signed in to change notification settings - Fork 191
/
Copy pathpyproject.toml
65 lines (61 loc) · 1.77 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
59
60
61
62
63
64
65
[project]
name = "django-recurrence"
version = "1.12.1"
description = "Django utility wrapping dateutil.rrule"
authors = [
{name = "Tamas Kemenczy", email = "[email protected]"},
{name = "Lino Helms", email = "[email protected]"}
]
dependencies = [
"flake8==4.0.1",
"pytest-cov==3.0.0",
"pytest-django==4.5.2",
"pytest-sugar==0.9.5",
"pytest==7.1.2",
"sphinx==4.3.2",
"sphinx-rtd-theme==1.0.0",
"tox==3.25.1",
"django>=4.0",
"python-dateutil",
]
requires-python = ">=3.9"
readme = "README.rst"
license = {text = "BSD"}
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Plugins",
"Environment :: Web Environment",
"Framework :: Django",
"Framework :: Django",
"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",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: Implementation",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
[project.urls]
Homepage = "https://github.com/jazzband/django-recurrence"
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[tool.pdm]
distribution = true
[tool.pdm.dev-dependencies]
dev = [
"setuptools>=69.0.3",
"tox-pdm>=0.6.1",
"tox>=3.25.1",
]
[tool.pdm.package-dir]
recurrence = "recurrence"