forked from audreyreal/NSDotPy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
25 lines (22 loc) · 769 Bytes
/
Copy pathpyproject.toml
File metadata and controls
25 lines (22 loc) · 769 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
[tool.poetry]
name = "nsdotpy"
version = "2.3.0"
description = "A wrapper around httpx that abstracts away interacting with the HTML nationstates.net site. Focused on legality, correctness, and ease of use."
authors = ["audrey <audreyreal@proton.me>"]
license = "AGPL-3.0-or-later"
readme = "README.md"
repository = "https://github.com/sw33ze/NSDotPy"
[tool.poetry.dependencies]
python = ">=3.10,<3.13"
httpx = { extras = ["http2"], version = "^0.24.0" }
beautifulsoup4 = "^4.12.3"
keyboard = "^0.13.5"
lxml = "^4.9.4"
python-benedict = {extras = ["parse", "xml"], version = "^0.31.0"}
[tool.poetry.group.dev.dependencies]
black = "^23.12.1"
pdoc = "^13.1.1"
pyinstaller = "^6.0.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"