-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
55 lines (49 loc) · 1.31 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
48
49
50
51
52
53
54
55
[tool.poetry]
name = "hexproof.io"
version = "1.1.0"
description = "A comprehensive Magic the Gathering data and resources API."
authors = ["Investigamer <[email protected]>"]
license = "MPL-2.0"
readme = "README.md"
keywords = ["hexproof", "Magic the Gathering", "Magic", "mtg", "scryfall", "mtgjson", "python"]
classifiers = [
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
[[tool.poetry.packages]]
include = "api"
[tool.poetry.dependencies]
python = ">=3.10.0,<3.13.0"
requests = "^2.31.0"
gunicorn = "^22.0.0"
bs4 = "^0.0.2"
ratelimit = "^2.2.1"
pyyaml = "^6.0.1"
backoff = "^2.2.1"
yarl = "^1.9.3"
django-ninja = "^1.3.0"
python-dotenv = "^1.0.0"
omnitils = "^1.4.4"
hexproof = "^0.3.7"
click = "^8.1.7"
psycopg2 = "^2.9.9"
django-environ = "^0.11.2"
whitenoise = "^6.7.0"
[tool.poetry.group.dev.dependencies]
commitizen = "^3.12.0"
mypy = "^1.7.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.commitizen]
version = "1.1.0"
encoding = "utf-8"
tag_format = "$major.$minor.$patch"
update_changelog_on_bump = true
version_files = [
"pyproject.toml:version"
]
[tool.poetry.scripts]
hexadmin = 'api.cli:HexproofCLI'