-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (35 loc) · 771 Bytes
/
pyproject.toml
File metadata and controls
44 lines (35 loc) · 771 Bytes
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
# Specifications for this file are in https://packaging.python.org/specifications/core-metadata
[project]
name = "TryNiceGUI"
readme = "README.md"
dynamic = ["version"]
keywords = [
"development",
]
authors = [
{ name = "Simone Rubino", email = "daemo00@gmail.com" },
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
]
dependencies = [
"nicegui",
]
[project.optional-dependencies]
docs = [
"sphinx",
"sphinx-immaterial",
]
[project.scripts]
run = "TryNiceGUI:cli.main"
[tool.setuptools_scm]
write_to = "src/TryNiceGUI/__version__.py"
[build-system]
requires = [
"setuptools>=82.0.1",
"setuptools_scm[toml]>=6.2",
"wheel",
]
build-backend = "setuptools.build_meta"