-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
35 lines (30 loc) · 885 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
[tool.poetry]
name = "nssurge-api"
version = "0.2.17"
description = "NSSurge HTTP API for Python"
authors = ["Xinyuan Chen <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/tddschn/nssurge-api"
repository = "https://github.com/tddschn/nssurge-api"
classifiers = [
"Topic :: Internet :: WWW/HTTP",
"Operating System :: OS Independent",
]
keywords = ["nssurge", "api", "aiohttp"]
[tool.poetry.scripts]
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/tddschn/nssurge-api/issues"
[tool.poetry.dependencies]
python = "^3.11"
aiohttp = "^3.8.1"
typing-extensions = "^4.2.0"
[tool.poetry.group.dev.dependencies]
pytest = "^7.3.1"
toml = "^0.10.2"
yapf = "^0.32.0"
better-exceptions = "^0.3.3"
bump2version = "^1.0.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"