-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
32 lines (29 loc) · 1.12 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
[tool.poetry]
name = "htag"
version = "0.0.0" # auto-updated
description = "GUI toolkit for building GUI toolkits (and create beautiful applications for mobile, web, and desktop from a single python3 codebase)"
authors = ["manatlan <[email protected]>"]
readme = 'README.md'
license="MIT"
keywords=['gui', 'electron', "cef", "pywebview", "starlette", "uvicorn", "tornado", "asyncio", "desktop", "web", "mobile", "http", "websocket", "html", "pyscript", "android", "kivy", "apk"]
homepage = "https://github.com/manatlan/htag"
repository = "https://github.com/manatlan/htag"
documentation = "https://manatlan.github.io/htag/"
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.7"
[tool.poetry.dev-dependencies]
pytest = "^6"
pytest-cov = "^3"
pytest-asyncio="^0.19"
pywebview = "^3.6"
selenium = "^4"
fake-winreg = "^1.6"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"