-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
42 lines (37 loc) · 1009 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "pokemon-card-recognizer"
version = "0.0.1.3.8.6"
authors = [
{ name="Prateek Tandon", email="[email protected]" },
]
description = "Pokemon TCG Card Recognizer"
readme = "README.md"
requires-python = ">=3.11.4"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"ocr-ops",
"pandas",
"pokemontcgsdk",
"bidict",
"ordered_set",
"requests",
"Pillow==9.5.0",
"tqdm",
]
[tool.hatch.build.targets.wheel.force-include]
"pokemon_card_recognizer/reference/data/ref_build" = "pokemon_card_recognizer/reference/data/ref_build"
[tool.hatch.build.targets.sdist]
exclude = [
"/.github",
"/.gitignore",
]
[project.urls]
"Homepage" = "https://github.com/prateekt/pokemon-card-recognizer"
"Bug Tracker" = "https://github.com/prateekt/pokemon-card-recognizer/issues"