-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
32 lines (29 loc) · 903 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "fluxo"
version = "0.14.2"
authors = [
{ name="Mailson Náscin", email="[email protected]" },
]
description = "Simple data flow with execution in separate threads and easy scheduling configuration."
readme = "README.md"
requires-python = ">=3.11"
keywords = ["fluxo", "data", "scheduler"]
license = {text = "MIT"}
classifiers = [
"Programming Language :: Python :: 3",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Software Development :: Internationalization",
]
dependencies = [
"flet==0.15.0",
"schedule==1.2.1"
]
[project.urls]
"Homepage" = "https://github.com/nascin/fluxo"
"Source Code" = "https://github.com/nascin/fluxo"
"Bug Tracker" = "https://github.com/nascin/fluxo/issues"