-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (43 loc) · 1.05 KB
/
pyproject.toml
File metadata and controls
46 lines (43 loc) · 1.05 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
[project]
name = 'baselayer'
version = '0.1'
requires-python = '>=3.10'
dependencies = [
"arrow>=0.15.4",
"distributed>=2023.1.1",
"jinja2>=2.11.2",
"numpy>=1.21.4",
"packaging>=23.0",
"phonenumbers>=8.12.15",
"psycopg[binary]>=3.2.0",
"pyjwt>=2.0.1",
"python-dateutil>=2.8.1",
"python-slugify>=4.0.1",
"pyyaml>=6.0.1",
"pyzmq>=20.0.0",
"requests>=2.25.1",
"simplejson>=3.17.2",
"social-auth-core==4.2.0",
"sqlalchemy>=2.0.38,<3",
"sqlalchemy-utils>=0.36.8",
"supervisor>=4.3",
"tomli >= 2.1.0; python_full_version < '3.11'",
"tornado>=6.0.3",
]
[tool.uv]
package = false
[tool.ruff]
target-version = "py310"
[dependency-groups]
test = [
"playwright>=1.55",
"pytest>=8.0.0",
"pytest-playwright>=0.7.1",
]
docs = [
"notedown>=1.5.1",
"numpydoc>=1.10.0; python_version >= '3.12'", # Can remove these tags once Sphinx supports all baselayer supported Python versions
"recommonmark>=0.7.1",
"sphinx>=9.1.0; python_version >= '3.12'",
"sphinx-rtd-theme>=3.1.0",
]