-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
42 lines (36 loc) · 927 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
37
38
39
40
41
42
# pyproject.toml
[build-system]
requires = ["setuptools>=61.0", "wheel", "uv"]
build-backend = "setuptools.build_meta"
[project]
name = "inui"
version = "1.0.0.7"
description = "Powerful and Highly Customizable Python Library for UI"
readme = "README.md"
authors = [{ name = "Mohammadreza Amani", email = "[email protected]" }]
license = { file = "LICENSE" }
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
]
keywords = [
'ui',
'python',
'html',
'framework',
'frontend',
'css',
'bootstrap',
'tailwind',
]
dependencies = []
requires-python = ">=3.5"
[project.optional-dependencies]
full = ["black", "bs4", "lxml", "watchdog", "websockets"]
[project.urls]
Homepage = "https://github.com/MohammadrezaAmani/"
[tool.setuptools]
py-modules = ['inui']
[project.scripts]
inui = "inui.__main__:main"