-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
35 lines (32 loc) · 1.52 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
[project]
name = "BevyFrame"
version = "0.5.0"
description = "Python Web Framework"
readme = "README.md"
license = {text = "LGPL-2.1"}
maintainers = [{name = "Çağan Mert İŞLEK", email = "islekcaganmert@gmail.com"}]
classifiers = [
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: LGPL-2.1 License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Internet :: WWW/HTTP :: Application",
"Topic :: Software Development :: Libraries :: Application Frameworks",
]
requires-python = ">=3.9"
dependencies = ["requests==2.32.3", "Jinja2==3.1.4", "gunicorn==23.0.0", "hereus_ui_3_2==3.2.0", "pycparser==2.22", "typing_extensions==4.12.2", "certifi==2024.8.30", "cffi==1.17.1", "PyJWT==2.9.0", "charset-normalizer==3.4.0", "cryptography==43.0.3", "idna==3.10", "urllib3==2.2.3", "MarkupSafe==3.0.2", "SQLAlchemy==2.0.36", "TheProtocols==3.1.0.1"]
[project.urls]
Homepage = "https://bevyframe.islekcaganmert.me"
Donate = "https://www.buymeacoffee.com/islekcaganmert"
Documentation = "https://bevyframe.islekcaganmert.me/docs"
Changes = "https://bevyframe.islekcaganmert.me/changes"
"Source Code" = "https://github.com/islekcaganmert/bevyframe"
"Issue Tracker" = "https://github.com/islekcaganmert/bevyframe/issues"
Chat = "https://lemmy.today/c/bevyframe"
[project.scripts]
bevyframe = "bevyframe:cmdline"
[build-system]
requires = ["setuptools","wheel"]
build-backend = "setuptools.build_meta"