-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
45 lines (39 loc) · 1.05 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
36
37
38
39
40
41
42
43
44
45
[project]
name = "flet-audio-recorder"
version = "0.1.0"
description = "AudioRecorder control for Flet"
readme = "README.md"
authors = [
{ name = "Flet contributors", email = "[email protected]" }
]
classifiers = [
"License :: OSI Approved :: Apache Software License",
]
requires-python = ">=3.8"
dependencies = [
"flet>=0.25.2",
]
[project.urls]
Homepage = "https://flet.dev"
Documentation = "https://flet.dev/docs/controls/audiorecorder"
Repository = "https://github.com/flet-dev/flet-audio-recorder"
Issues = "https://github.com/flet-dev/flet-audio-recorder/issues"
[tool.setuptools.package-data]
"flutter.flet_audio_recorder" = ["**/*"]
[tool.uv]
dev-dependencies = [
"flet[all]>=0.25.2",
"mkdocs",
"mkdocs-material",
"mkdocstrings[python]"
]
[tool.poetry.group.dev.dependencies]
flet = {extras = ["all"], version = "0.27.4"}
mkdocs = "^1.0"
mkdocstrings = { extras = ["python"], version = "^0.10" }
mkdocs-material = "^8.0"
[tool.setuptools]
license-files = []
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"