-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
60 lines (55 loc) · 1.5 KB
/
Copy pathpyproject.toml
File metadata and controls
60 lines (55 loc) · 1.5 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
[project]
name = "hexproof.io"
version = "1.2.1"
description = "A comprehensive Magic the Gathering data and resources API."
authors = [{ name = "Investigamer", email = "dev@hexproof.io" }]
license = "MPL-2.0"
readme = "README.md"
requires-python = ">=3.11,<3.15"
keywords = ["hexproof", "Magic the Gathering", "Magic", "mtg", "scryfall", "mtgjson"]
classifiers = [
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14"
]
dependencies = [
"requests>=2.33.1,<3",
"bs4~=0.0.2",
"ratelimit~=2.2.1",
"pyyaml~=6.0.1",
"backoff~=2.2.1",
"yarl>=1.23.0,<1.24",
"django-ninja~=1.6.2",
"python-dotenv~=1.2.2",
"hexproof==0.4.1",
"click>=8.3.3,<9",
"psycopg2-binary>=2.9.9,<3",
"django-environ>=0.13.0,<0.14",
"whitenoise>=6.12.0,<6.13",
"typer>=0.25.0,<0.26",
"django-cors-headers>=4.3,<5",
"django>=5.2.10",
]
[project.optional-dependencies]
dev = [
"mypy>=1.9,<2",
"pytest>=8.1,<9",
"commitizen>=3.20,<4"
]
[project.scripts]
hexadmin = "api.cli:HexproofCLI"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["api", "core"]
[tool.commitizen]
version = "1.2.1"
encoding = "utf-8"
tag_format = "$major.$minor.$patch"
update_changelog_on_bump = true
version_files = [
"pyproject.toml:version"
]