-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
72 lines (65 loc) · 1.58 KB
/
pyproject.toml
File metadata and controls
72 lines (65 loc) · 1.58 KB
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
[project]
name = "django-pbsmmapi"
dynamic = ['version']
description = "Django models that import content from the PBS MediaManager API"
authors = [{ name = "Bob Donahue" }]
requires-python = ">=3.10,<4.0"
readme = "README.md"
license = "MIT"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Framework :: Django",
"Framework :: Django :: 4.0",
"Framework :: Django :: 4.1",
"Framework :: Django :: 4.2",
"Framework :: Django :: 5.0",
"Framework :: Django :: 5.1",
"Framework :: Django :: 5.2",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
]
dependencies = [
"django>=4.0",
"requests",
"python-dateutil",
"pytz",
"huey>=2.5.3",
"pycaption>=2.2.16",
"nltk>=3.9",
]
[dependency-groups]
dev = [
"pre-commit",
"isort",
"black",
"ruff",
"django-stubs",
"coverage",
"pytest",
"ipython",
"devtools",
"psycopg[pool]",
"testcontainers[redis,postgres]",
]
[tool.hatch.version]
path = "pbsmmapi/__init__.py"
[tool.hatch.build.targets.sdist]
include = ["pbsmmapi"]
[tool.hatch.build.targets.wheel]
include = ["pbsmmapi"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.black]
preview = true
[tool.isort]
profile = "black"
src_paths = ["pbsmmapi"]
single_line_exclusions = []
force_sort_within_sections = true
force_grid_wrap = 2