-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
87 lines (78 loc) · 2.23 KB
/
pyproject.toml
File metadata and controls
87 lines (78 loc) · 2.23 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
[build-system]
requires = ["setuptools>=82.0.1", "wheel", "setuptools_scm"]
build-backend = "setuptools.build_meta"
[project]
name = "python-moodle"
dynamic = ["version"]
description = "Python CLI and library to automate Moodle via web sessions, CAS/SSO, course management and SCORM uploads"
readme = "README.md"
authors = [{ name = "Ernesto Serrano", email = "info@ernesto.es" }]
requires-python = ">=3.9"
keywords = ["moodle", "lms", "cli", "automation", "scorm", "cas", "sso", "education", "elearning", "web-scraping"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Education",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System :: Systems Administration",
]
dependencies = [
"requests",
"beautifulsoup4",
"lxml",
"python-dotenv",
"typer[all]",
"rich",
"pyyaml",
]
[project.optional-dependencies]
dev = [
"pytest",
"pytest-cov",
"pytest-xdist",
"flake8",
"flake8-docstrings",
"black",
"mypy",
"isort",
"mkdocs",
"mkdocstrings[python]",
"pymdown-extensions",
"mkdocs-material",
"mkdocs-autorefs",
"mkdocs-git-revision-date-localized-plugin",
"mkdocs-minify-plugin"
]
[project.urls]
Homepage = "https://github.com/erseco/python-moodle"
Documentation = "https://erseco.github.io/python-moodle/"
Repository = "https://github.com/erseco/python-moodle"
Issues = "https://github.com/erseco/python-moodle/issues"
Changelog = "https://github.com/erseco/python-moodle/releases"
[project.scripts]
py-moodle = "py_moodle.cli:app"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools_scm]
version_scheme = "release-branch-semver"
[tool.black]
line-length = 88
exclude = '''
/(
env
)/
'''
[tool.isort]
profile = "black"
skip = ["env"]
[tool.flake8]
ignore = ["E501", "W503"]