-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpyproject.toml
More file actions
67 lines (63 loc) · 1.8 KB
/
pyproject.toml
File metadata and controls
67 lines (63 loc) · 1.8 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "violit"
version = "0.4.0"
description = "Violit: Faster than Light, Beautiful as Violet. The High-Performance Python Web Framework (Streamlit Alternative with Zero Rerun)."
readme = "README.md"
requires-python = ">=3.10"
license = {text = "MIT"}
authors = [
{name = "Violit Team", email = "violit.company@gmail.com"},
]
keywords = [
"web",
"framework",
"streamlit",
"dashboard",
"ui",
"fastapi",
"reactive",
"zero-rerun",
"shoelace",
"websocket",
"data-science"
]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"Topic :: Software Development :: User Interfaces",
"Framework :: FastAPI",
]
dependencies = [
"fastapi>=0.68.0",
"uvicorn>=0.15.0",
"python-multipart>=0.0.5",
"pywebview>=4.0.0",
"cachetools>=4.2.0",
"pandas>=1.3.0",
"numpy>=1.20.0",
"plotly>=5.0.0",
"matplotlib>=3.4.0",
"jinja2>=3.0.0",
"websockets>=10.0",
"bcrypt>=4.0.0"
]
[project.urls]
Homepage = "https://github.com/violit-dev/violit"
Documentation = "https://github.com/violit-dev/violit"
Repository = "https://github.com/violit-dev/violit"
Issues = "https://github.com/violit-dev/violit/issues"
[tool.setuptools.packages.find]
where = ["src"]
include = ["violit*"]