-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpyproject.toml
More file actions
53 lines (48 loc) · 1.71 KB
/
Copy pathpyproject.toml
File metadata and controls
53 lines (48 loc) · 1.71 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
[project]
name = "openedx-aspects"
version = "3.0.0"
description = "Learner analytics documentation for Open edX"
readme = "README.md"
requires-python = "==3.12.*"
license = {text = "AGPL-3.0"}
authors = [
{name = "Axim Collaborative", email = "oscm@axim.org"},
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"sphinx",
"sphinx-book-theme",
"sphinx-autobuild",
"sphinx-copybutton",
"sphinxcontrib-mermaid",
]
[project.urls]
Homepage = "https://docs.openedx.org/projects/openedx-aspects"
Documentation = "https://docs.openedx.org/projects/openedx-aspects"
Repository = "https://github.com/openedx/openedx-aspects"
"Issue Tracker" = "https://github.com/openedx/openedx-aspects/issues"
[tool.uv]
# DO NOT EDIT constraint-dependencies DIRECTLY.
# This list is managed by `edx_lint write_uv_constraints`
# and will be overwritten the next time `make upgrade` is run.
# - GLOBAL constraints: edit edx_lint/files/common_constraints.txt
# - REPO-SPECIFIC constraints: edit [tool.edx_lint].uv_constraints in this file
constraint-dependencies = [
"Django<6.0",
"elasticsearch<7.14.0",
"greenlet>3.0.1",
]
[tool.edx_lint]
# Repo-specific uv constraints merged with edx-lint's global constraints.
# Local entries override global ones for the same package.
# Run `make upgrade` to regenerate [tool.uv].constraint-dependencies.
uv_constraints = [
"greenlet>3.0.1", # playwright and sqlalchemy requirements conflict for greenlet<=3.0.1
]