-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
40 lines (35 loc) · 1.04 KB
/
pyproject.toml
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
[build-system]
requires = ["setuptools>=69.1.1", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "actirepo"
version = "0.2.0"
description = "Moodle activities repo organizer"
readme = "README.md"
authors = [
{ name = "fvarrui", email = "[email protected]" },
{ name = "noeper", email = "[email protected]" }
]
license = { file = "LICENSE" }
classifiers = [
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
]
keywords = ["activity", "repo", "moodle", "questions", "organizer"]
dependencies = [
"Jinja2>=3.1.2",
"Pillow>=10.1.0",
"html2image>=2.0.5",
"beautifulsoup4>=4.12.3",
"tabulate>=0.9.0",
]
requires-python = ">=3.12"
[project.optional-dependencies]
dev = ["black", "bumpver", "isort", "pip-tools", "pytest"]
[project.urls]
Homepage = "https://github.com/teuton-software/actirepo"
[project.scripts]
actirepo = "cli.__main__:main"
[tool.setuptools]
include-package-data = true