-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
40 lines (36 loc) · 1.14 KB
/
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
[tool.poetry]
name = "htagweb"
version = "0.0.0" # auto-updated
description = "It's a robust webserver (http/ws) for hosting htag apps on the web (a process by user)"
authors = ["manatlan <[email protected]>"]
readme = 'README.md'
license="MIT"
keywords=['htag','webserver']
homepage = "https://github.com/manatlan/htagweb"
repository = "https://github.com/manatlan/htagweb"
documentation = "https://github.com/manatlan/htagweb"
classifiers = [
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Build Tools",
"License :: OSI Approved :: Apache Software License",
]
[tool.poetry.dependencies]
python = "^3.8"
htag = ">= 0.51"
starlette = "0.29.0"
pycryptodomex = "^3.19.0"
uvicorn = {version = "0.22.0", extras = ["standard"]}
aiofiles = "^23.2.1"
shared-memory-dict = "^0.7.2"
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.2"
pytest-asyncio = "^0.21.1"
pytest-cov = "^4.1.0"
httpx = "0.24.0"
gunicorn = "^22.0.0"
beautifulsoup4 = "^4.12.3"
redys = "^0.9.20"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"