-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
47 lines (42 loc) · 1.28 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
41
42
43
44
45
46
47
[build-system]
requires = ["setuptools>=61.0", "setuptools_scm>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "bblearn"
dynamic = ["version"]
authors = [
{ name="Jacob Sánchez", email="jacobszpz@protonmail.com" },
]
description = "An API client for Blackboard Learn"
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Topic :: Internet :: WWW/HTTP",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: GNU Lesser General Public License v2 (LGPLv2)",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries"
]
dependencies = [
"requests",
"typing_extensions",
"tiny-api-client>=1.3.0",
"pydantic",
"pathvalidate",
"tzdata"
]
[tool.setuptools_scm]
[project.optional-dependencies]
test = ["pytest", "pytest-mock", "exceptiongroup", "mypy"]
docs = ["sphinx", "sphinx-rtd-theme"]
[project.urls]
"Repository" = "https://github.com/sanjacob/bblearn"
"Bug Tracker" = "https://github.com/sanjacob/bblearn/issues"
[tool.isort]
length_sort = true
[tool.mypy]
plugins = ["pydantic.mypy", "tiny_api_client.mypy"]