-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
75 lines (66 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
[build-system]
requires = ["setuptools>=61.0.0"]
build-backend = "setuptools.build_meta"
[project]
name = "picker"
dynamic = ["version"]
description = "A Django sports picker app"
license = { file = "LICENSE" }
readme = { file = "README.rst", content-type = "text/x-rst" }
keywords = ["django", "sports", "football"]
authors = [
{ name = "David Krauth", email = "[email protected]" },
]
requires-python = ">=3.10"
classifiers = [
"License :: OSI Approved :: MIT License",
"Environment :: Web Environment",
"Framework :: Django",
"Framework :: Django :: 4.2",
"Framework :: Django :: 5.0",
"Framework :: Django :: 5.1",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12"
]
dependencies = [
"Django>=4.2",
"django-bootstrap5",
"Pillow>=6.2.1",
"python-dateutil>=2.8.1",
]
[project.urls]
Homepage = "https://github.com/dakrauth/django-picker"
[project.optional-dependencies]
test = [
"pytest",
"coverage",
"pytest-django",
"pytest-cov",
"freezegun"
]
dev = [
"tox",
"build",
"ipython",
"twine",
"ruff",
"ipdb",
"django-extensions",
"pytest-sugar",
"pytest-clarity"
]
[tool.setuptools.dynamic]
version = { attr = "picker.__init__.__version__"}
[tool.setuptools.packages.find]
include = ["picker*"]
[tool.black]
line-length = 100
[tool.ruff]
cache-dir = ".dev/ruff"
line-length = 100
indent-width = 4
[tool.ruff.lint]
ignore = ["E741"]