|
| 1 | +[project] |
| 2 | +name = "openedx-aspects" |
| 3 | +version = "3.0.0" |
| 4 | +description = "Learner analytics documentation for Open edX" |
| 5 | +readme = "README.md" |
| 6 | +requires-python = ">=3.8" |
| 7 | +license = {text = "AGPL-3.0"} |
| 8 | +authors = [ |
| 9 | + {name = "Axim Collaborative", email = "oscm@axim.org"}, |
| 10 | +] |
| 11 | +classifiers = [ |
| 12 | + "Development Status :: 5 - Production/Stable", |
| 13 | + "Intended Audience :: Developers", |
| 14 | + "License :: OSI Approved :: GNU Affero General Public License v3", |
| 15 | + "Operating System :: OS Independent", |
| 16 | + "Programming Language :: Python :: 3", |
| 17 | + "Programming Language :: Python :: 3.8", |
| 18 | + "Programming Language :: Python :: 3.9", |
| 19 | + "Programming Language :: Python :: 3.10", |
| 20 | + "Programming Language :: Python :: 3.11", |
| 21 | + "Programming Language :: Python :: 3.12", |
| 22 | +] |
| 23 | + |
| 24 | +dependencies = [ |
| 25 | + "sphinx", |
| 26 | + "sphinx-book-theme", |
| 27 | + "sphinx-autobuild", |
| 28 | + "sphinx-copybutton", |
| 29 | + "sphinxcontrib-mermaid", |
| 30 | + "sphinxcontrib-contentui", |
| 31 | +] |
| 32 | + |
| 33 | +[project.urls] |
| 34 | +Homepage = "https://docs.openedx.org/projects/openedx-aspects" |
| 35 | +Documentation = "https://docs.openedx.org/projects/openedx-aspects" |
| 36 | +Repository = "https://github.com/openedx/openedx-aspects" |
| 37 | +"Issue Tracker" = "https://github.com/openedx/openedx-aspects/issues" |
| 38 | + |
| 39 | +[tool.uv] |
| 40 | +constraint-dependencies = [ |
| 41 | + # Downloaded from edx-lint common_constraints.txt |
| 42 | + # DO NOT EDIT - Use 'python sync_constraints.py' to update |
| 43 | + "Django<6.0", |
| 44 | + "elasticsearch<7.14.0", |
| 45 | + # Local constraint |
| 46 | + "greenlet>3.0.1", # playwright and sqlalchemy requirements conflict for greenlet<=3.0.1 |
| 47 | +] |
| 48 | +# Common constraints from edx-lint |
| 49 | +override-dependencies = [ |
| 50 | + "Django<6.0", # using LTS django version |
| 51 | + "elasticsearch<7.14.0", # 7.14.0+ contains breaking changes |
| 52 | +] |
0 commit comments