-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpyproject.toml
32 lines (28 loc) · 984 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
[tool.poetry]
name = "wuy"
version = "0.10.1"
description = "A simple module for making HTML GUI applications with python3/asyncio"
authors = ["manatlan <[email protected]>"]
#include = ["LICENSE"]
readme = 'README.md'
keywords=['gui', 'html', 'javascript', 'electron', "asyncio", "aiohttp", "websocket"]
homepage = "https://github.com/manatlan/wuy"
repository = "https://github.com/manatlan/wuy"
documentation = "https://github.com/manatlan/wuy"
license="GPL-2.0"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules"
]
[tool.poetry.dependencies]
python = "^3.5 || ^3.6 || ^3.7"
aiohttp = "^3.5 || ^3.0.0b0"
[tool.poetry.dev-dependencies]
pytest = "^3.0"
pytest-cov = "^2.6"
cefpython3 = "^66.0"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"