-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
47 lines (41 loc) · 989 Bytes
/
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
[project]
name = "autoanki"
version = "0.1.0"
authors = [
{ name="Vincent Luczkow", email="[email protected]" },
]
description = "Tools for interacting Anki decks."
readme = "README.md"
license = { file="LICENSE" }
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"anki==23.12.1",
]
[project.optional-dependencies]
dev = [
"black>=23.12.1",
"flake8>=7.0.0",
"mypy>=1.8.0",
"pre-commit>=3.6.0",
"pytest>=7.4.4",
"Sphinx>=7.2.6",
"sphinx_rtd_theme>=1.0.0",
"types-requests>=2.31.0",
]
examples = [
"beautifulsoup4==4.12.2",
"requests>=2.31.0"
]
[project.urls]
"Homepage" = "https://github.com/vluzko/autoanki"
"Bug Tracker" = "https://github.com/vluzko/autoanki/issues"
[build-system]
requires = ["setuptools>=69.0"]
build-backend = "setuptools.build_meta"
[tool.isort]
profile = "black"