-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpyproject.toml
42 lines (37 loc) · 965 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 = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "erdb"
description = "parse ELDEN RING files into JSON"
authors = [{name = "Filip Tomaszewski", email = "phil25@pm.me"}]
readme = "README.md"
license = {file = "LICENSE"}
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.11",
]
requires-python = ">=3.11"
dependencies = [
"Pillow >= 9.2",
"deepdiff >= 6.2",
"requests >= 2.28",
"fastapi >= 0.87",
"fastapi-versioning >= 0.10",
"uvicorn >= 0.19",
"jinja2 >= 3.1.2",
"htmlmin >= 0.1.12",
]
dynamic = ["version"]
[project.optional-dependencies]
test = [
"pytest >= 7.1"
]
[project.urls]
Home = "https://github.com/EldenRingDatabase/erdb"
[project.scripts]
erdb = "erdb.main.cli:entrypoint"
[tool.mypy]
plugins = "pydantic.mypy"