-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpyproject.toml
More file actions
63 lines (56 loc) · 1.32 KB
/
Copy pathpyproject.toml
File metadata and controls
63 lines (56 loc) · 1.32 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
[project]
name = "fleting"
version = "1.1.33"
description = "Micro-framework MVC baseado em Flet para aplicações mobile, tablet e desktop"
readme = "README.md"
license = { text = "MIT" }
requires-python = ">=3.11"
authors = [
{ name = "Alex Yucra" }
]
keywords = [
"fleting",
"fleting framework",
"pip install fleting",
"flet",
"framework",
"mvc",
"ui",
"desktop",
"mobile",
"apk",
"app",
"android"
]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent"
]
dependencies = [
"flet",
"rich",
"typer",
"psutil",
"langchain"
]
# ------------------------
# CLI ENTRY POINT
# ------------------------
[project.scripts]
fleting = "fleting.cli.cli:main"
# ------------------------
# URLs (PyPI)
# ------------------------
[project.urls]
Homepage = "https://github.com/alexyucra/fleting"
Documentation = "https://github.com/alexyucra/fleting/tree/main/docs"
Repository = "https://github.com/alexyucra/fleting"
Issues = "https://github.com/alexyucra/fleting/issues"
# ------------------------
# BUILD SYSTEM (Poetry)
# ------------------------
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"