-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpyproject.toml
36 lines (30 loc) · 1020 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
36
[tool.poetry]
name = "puepy"
version = "0.4.6"
description = "Frontend Framework for PyScript"
authors = ["Ken Kinder <ken+github@kkinder.com>"]
readme = "README.md"
homepage = "https://puepy.dev/"
repository = "https://github.com/kkinder/puepy"
documentation = "https://docs.puepy.dev/"
license = "Apache-2.0"
keywords = ["pyscript", "webassembly", "frontend", "framework", "reactive"]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Web Environment",
"Environment :: WebAssembly",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries :: Application Frameworks",
]
[tool.poetry.dependencies]
python = "^3.9"
[tool.poetry.group.dev.dependencies]
pytest-playwright = "^0.5.0"
pytest = "^8.2.2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tools.poetry.urls]
issues = "https://github.com/kkinder/puepy/issues"