-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathpyproject.toml
More file actions
101 lines (93 loc) · 2.93 KB
/
pyproject.toml
File metadata and controls
101 lines (93 loc) · 2.93 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
# pyproject.toml for installing instrument-data-collector
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "roundware"
description = "Roundware Server"
license = {text = "License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)"}
dynamic = ['version']
authors = [
{"name" = "Halsey Burgund", "email" = "halsey@halseyburgund.com"},
{"name" = "Mike MacHenry"},
{"name" = "Ben McAllister"},
{"name" = "Jule Slootbeek"},
{"name" = "Bryan Wilson"},
{"name" = "Brad Erickson", "email" = "eosrei@gmail.com" },
{"name" = "Evan Babb", "email" = "11@probabble.com"},
]
maintainers = [
{"name" = "Halsey Burgund", "email" = "halsey@halseyburgund.com"},
{"name" = "Evan Babb", "email" = "11@probabble.com"},
]
requires-python = ">=3.11"
dependencies = [
"Django>=4.2,<4.3",
# Creates REST APIs
"djangorestframework>=3.14,<3.16",
# locks down access to api endpoints
"django-dry-rest-permissions",
# Used for DRF filtering
"django-filter>=23.5",
# Used in roundware/rw/admin.py, roundware/rw/forms.py, roundware/rw/views, and more.
"django-guardian>=3.0",
# Used by roundware/api1/commands.py
"psutil>=7.0",
# Used by roundware/rw/fields.py
# django-validated-file==2.0.1
"python-magic>=0.4.27",
# Used in roundware/rw/views.py
"django-braces==1.14.0",
# Loaded in roundware/urls.py
# django-adminplus==0.2.1
# Used in roundware/rw/forms.py
"django-crispy-forms>=2.0",
# Used in roundware/rw/widgets.py
"django-floppyforms==1.9.0",
# Used in roundware/rw/views.py:
"django-extra-views==0.13.0",
# Used in roundware/rw/fields.py and roundware/rw/widgets.py
"django-sortedm2m==3.1.1",
# Required for RDF Date parsing
"python-dateutil>=2.9",
# Used in roundwared/icecast2.py
"requests>=2.32",
# Used in admin, including Batch Tag Add
"django-formset-js==0.4.0",
# database adapter for PostgreSQL
"psycopg2",
# geographic distance calculator utilities
"geopy",
# cors support to remove php layer
"django-cors-headers>=4.0",
# geographic extensions for djangorestframework-gis
"djangorestframework-gis>=1.0",
# leaflet map utilities for django admin
"django-leaflet",
# Bootstrap admin theme for Django 1.9
# https://github.com/roundware/django-admin-bootstrapped/zipball/3.0.0
# audio conversions
"ffmpeg-python==0.2.0"
]
[project.optional-dependencies]
dev = [
"ipython",
]
test = [
"coverage",
"webtest",
"django-webtest",
"model_bakery",
"mock",
"pytest",
"pytest-django",
"pytest-cov",
]
[tool.setuptools.dynamic]
version = { attr = "roundware.__version__"}
[tool.setuptools.packages.find]
where = ["."]
[tool.pytest.ini_options]
DJANGO_SETTINGS_MODULE = "roundware.settings.testing"
python_files = ["tests.py", "test_*.py", "*_tests.py"]
addopts = "--nomigrations --reuse-db"