-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
27 lines (24 loc) · 824 Bytes
/
pyproject.toml
File metadata and controls
27 lines (24 loc) · 824 Bytes
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
[tool.poetry]
name = "uvn-fira"
version = "1.3.1"
description = "The backend and API code for the Unscripted minigame."
authors = ["Marquis Kurt <software@marquiskurt.net>"]
license = "MPL-2.0"
readme = "PYREADME.md"
homepage = "https://github.com/UnscriptedVN/fira"
repository = "https://github.com/UnscriptedVN/fira"
documentation = "https://fira.marquiskurt.net"
classifiers = [
"Topic :: Games/Entertainment :: Puzzle Games",
"Topic :: Software Development :: Libraries"
]
[tool.poetry.dependencies]
python = ">= 3.7 || ~2.7.16"
toml = "^0.10.0"
typing = "^3.7.4"
[tool.poetry.dev-dependencies]
pylint = [{ version="^2.4.4", python=">=3.7" }]
pytest = [{ version = "^4.6", python="^2.7" }, { version = "^5.3.5", python=">3.5" }]
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"