-
Notifications
You must be signed in to change notification settings - Fork 69
Expand file tree
/
Copy pathpyproject.toml
More file actions
76 lines (68 loc) · 1.96 KB
/
pyproject.toml
File metadata and controls
76 lines (68 loc) · 1.96 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
[project]
name = "shtrove"
version = "25.6.1"
description = ""
authors = [
{name = "CenterForOpenScience", email = "share-support@cos.io"}
]
readme = "README.md"
requires-python = ">=3.13,<3.14"
dependencies = [
"bcrypt==4.3.0", # Apache 2.0
"celery==5.5.3", # BSD 3 Clause
"colorlog==6.9.0", # MIT
"django-allauth==65.5.0", # MIT
"django-celery-beat==2.8.1", # BSD 3 Clause
"django-cors-headers==4.7.0", # MIT
"django-extensions==3.2.3", # MIT
"django-filter==25.1", # BSD
"django-oauth-toolkit==3.0.1", # BSD
"django>=5.2.8,<5.3", # BSD 3 Clause
"elasticsearch8==8.17.2", # Apache 2.0
"lxml==5.3.0", # BSD
"kombu==5.5.4", # BSD 3 Clause
"markdown2==2.5.3", # MIT
"psycopg2==2.9.10", # LGPL with exceptions or ZPL
"rdflib==7.1.3", # BSD 3 Clause
"requests==2.32.3", # Apache 2.0
"primitive_metadata==0.2025.1", # MIT
"sentry-sdk[django]==2.24.1", # MIT
# to be removed in near-future work:
"djangorestframework==3.16.0", # BSD
"djangorestframework-jsonapi==7.1.0", # BSD
"PyJWE==1.0.0", # Apache 2.0
]
[tool.poetry]
packages = [
{ include = "trove" },
]
# "deploy" dependency group relevant only in deployment:
[tool.poetry.group.deploy]
optional = true
[tool.poetry.group.deploy.dependencies]
uwsgi = "2.0.28"
newrelic = "10.7.0" # newrelic APM agent, Custom License
gevent = "24.11.1" # MIT
psycogreen = "1.0.2" # BSD
# "dev" dependency group relevant only for local dev:
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
coveralls = "3.3.1"
toml = "0.10.2" # until coveralls/coverage update to tomllib
django-debug-toolbar = "5.1.0"
factory-boy = "3.3.3"
faker = "37.1.0"
flake8 = "7.2.0"
pytest-benchmark = "5.1.0"
pytest = "8.3.5"
pytest-django = "4.11.1"
mypy = "1.16.1"
###
# other stuff
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.coverage.run]
source = ["."]
omit = ["tests/*"]