-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
53 lines (46 loc) · 1.44 KB
/
pyproject.toml
File metadata and controls
53 lines (46 loc) · 1.44 KB
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
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "spragkit"
dynamic = ["version"]
description = "Python-first application framework over SPECTER and RAGOT"
readme = "README.md"
license = "Apache-2.0"
license-files = ["LICENSE"]
requires-python = ">=3.9"
authors = [
{name = "BleedingXiko"},
]
keywords = ["python", "web-framework", "ssr", "hydration", "realtime"]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Software Development :: Libraries :: Application Frameworks",
]
dependencies = [
"specter-runtime",
]
[project.urls]
Homepage = "https://github.com/BleedingXiko/SPRAG"
Repository = "https://github.com/BleedingXiko/SPRAG"
Issues = "https://github.com/BleedingXiko/SPRAG/issues"
[project.optional-dependencies]
websocket = [
"gevent-websocket",
]
[project.scripts]
sprag = "sprag.dev.cli:main"
[tool.setuptools.dynamic]
version = {attr = "sprag.__version__"}
[tool.setuptools.packages.find]
include = ["sprag", "sprag.*"]
[tool.setuptools.package-data]
sprag = ["assets/**/*", "dev/templates/**/*.tmpl"]