-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
60 lines (50 loc) · 1.4 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
[project]
name = "websaw"
description = "websaw - a web framework for rapid development with pleasure"
requires-python = ">=3.8"
license = {file = "LICENSE"}
keywords = ["python", "webapplication", "vue", "javascript", "js"]
authors = [
{ name="Valery Kucherov", email="valq7711@gmail.com" },
]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"ombott>=1.0.0",
"click",
"threadsafevariable",
"pydal",
"pyjwt",
"voodoodal>=1.1.0",
"upytl>=0.0.7",
"pyjsaw>=1.1.0"
]
dynamic = ["version"]
[project.optional-dependencies]
full = [
"watchgod",
"upytl-standard>=0.0.3",
]
[project.urls]
homepage = "https://github.com/valq7711/websaw"
repository = "https://github.com/valq7711/websaw"
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
zip-safe = false
[tool.setuptools.packages.find]
include = ['websaw*']
namespaces = false
[tool.setuptools.dynamic]
version = {attr = "websaw.__version__"}