-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (44 loc) · 1.45 KB
/
pyproject.toml
File metadata and controls
47 lines (44 loc) · 1.45 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
[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]
constraint-dependencies = [
# Downloaded from edx-lint common_constraints.txt
# DO NOT EDIT - Use 'python sync_constraints.py' to update
"Django<6.0",
"elasticsearch<7.14.0",
# Local constraint
"greenlet>3.0.1", # playwright and sqlalchemy requirements conflict for greenlet<=3.0.1
]
# Common constraints from edx-lint
override-dependencies = [
"Django<6.0", # using LTS django version
"elasticsearch<7.14.0", # 7.14.0+ contains breaking changes
]