forked from umd-lib/ipmanager-django
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (47 loc) · 1.31 KB
/
pyproject.toml
File metadata and controls
51 lines (47 loc) · 1.31 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
[project]
name = "ipmanager-django"
description = "Stand-alone IP Manager Service (Django implementation)"
authors = [
{ name="University of Maryland Libraries", email="lib-ssdr@umd.edu" },
{ name="Peter Eichman", email="peichman@umd.edu" },
{ name="Erik Jones", email="ejones99@umd.edu" },
# 2025 Sprinterns
{ name="Neola Dsouza", email="nldsouza@umd.edu" },
{ name="Aatish Gupta", email="aatish@umd.edu" },
{ name="Mackenzie Kilgore", email="mkilgore@umd.edu" },
{ name="Dorian Mkam", email="dmkam@umd.edu" },
]
version = "1.0.0-dev"
dependencies = [
"binarytree~=6.5",
"click~=8.1",
"django~=5.2.9",
"django-umd-lib-style~=1.2",
"django-extensions~=4.1",
"django-environ~=0.12",
"djangosaml2~=1.11",
"urlobject~=3.0.0",
"waitress~=3.0",
"whitenoise~=6.9"
]
[dependency-groups]
test = [
"pytest~=9.0",
"pytest-django~=4.11",
"ruff~=0.14",
]
prod = [
"psycopg[binary]"
]
[project.scripts]
ipmanager = "ipmanager.server:run"
[tool.pytest.ini_options]
DJANGO_SETTINGS_MODULE = "ipmanager.settings"
filterwarnings = [
# these warnings are coming from third-party code
"ignore:pkg_resources is deprecated as an API.:DeprecationWarning",
]
[tool.ruff.format]
# Prefer single quotes over double quotes.
quote-style = "single"
exclude = ["manage.py"]