-
Notifications
You must be signed in to change notification settings - Fork 23
/
pyproject.toml
31 lines (28 loc) · 939 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
[tool.poetry]
name = "guy"
version = "0.7.6"
description = "A simple module for making HTML GUI applications with python3"
authors = ["manatlan <manatlan@gmail.com>"]
readme = 'README.md'
license="Apache-2.0"
keywords=['gui', 'html', 'javascript', 'electron', "asyncio", "tornado", "websocket"]
homepage = "https://github.com/manatlan/guy"
repository = "https://github.com/manatlan/guy"
documentation = "https://github.com/manatlan/guy"
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.5"
tornado = "^6.0"
[tool.poetry.dev-dependencies]
pytest = "^3.0"
pytest-cov = "^2.6"
cefpython3 = "^66.0"
vbuild = "0.8.1"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"