-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (36 loc) · 1.03 KB
/
pyproject.toml
File metadata and controls
40 lines (36 loc) · 1.03 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
[tool.poetry]
name = "fpclib"
version = "1.10.1"
description = "A powerful library for curating games for Flashpoint."
authors = ["mathgeniuszach <huntingmanzach@gmail.com>"]
license = "CC BY-NC-SA 4.0"
readme = "README.md"
repository = "https://github.com/xMGZx/fpclib"
homepage = "https://www.mathgeniuszach.com/"
documentation = "https://www.mathgeniuszach.com/bin/fpclib/"
classifiers = [
"Programming Language :: Python :: 3"
]
[tool.poetry.dependencies]
python = "^3.9"
beautifulsoup4 = "^4.12.3"
requests = "^2.31.0"
pillow = "^10.3.0"
ruamel-yaml = "0.16.13" # Version of YAML fpclib runs and works on
[tool.poetry.group.dev.dependencies]
toml = "^0.10.2"
sphinx = "^7.3.7"
sphinx-rtd-theme = "^2.0.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poe.tasks.clean]
script = "scripts:clean"
[tool.poe.tasks.docs]
script = "scripts:docs"
[tool.poe.tasks.build]
script = "scripts:build"
[tool.poe.tasks.reset-build]
script = "scripts:resetbuild"
[tool.poe.tasks.upload]
script = "scripts:upload"