generated from abdnh/anki-addon-template
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
26 lines (21 loc) · 882 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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "total_cards_matched_by_filtered_deck_search"
authors = [{ name = "Abdo", email = "[email protected]" }]
readme = "README.md"
classifiers = [
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
]
dynamic = ["dependencies", "optional-dependencies", "version"]
[tool.setuptools.dynamic]
dependencies = { file = ["requirements/bundle.txt"] }
optional-dependencies.dev = { file = ["requirements/dev.txt"] }
[tool.setuptools]
package-dir = { "total_cards_matched_by_filtered_deck_search" = "src" }
[tool.setuptools_scm]
[project.urls]
Repository = "https://github.com/abdnh/anki-total-cards-matched-by-filtered-deck-search"