-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (30 loc) · 768 Bytes
/
pyproject.toml
File metadata and controls
36 lines (30 loc) · 768 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
[build-system]
requires = [
"setuptools>=60",
"setuptools-scm>=8.0"
]
build-backend = "setuptools.build_meta"
[project]
dynamic = ["dependencies"]
name = "endra_app"
authors = [{ name = "Emendir" , email = "dev@emendir.tech"}]
version = "0.6.3"
license = {text="MIT-0 OR CC0-1.0"}
description = "P2P Messenger"
[project.urls]
Homepage = "https://github.com/emendir/EndraApp"
Repository = "https://github.com/emendir/EndraApp"
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
[tool.setuptools.package-data]
endra_app = ["*.kv","*.otf"]
"endra_app.fonts" = ["*.kv","*.otf"]
[tool.setuptools.packages.find]
where = ["src"]
include = [
"endra_app",
"endra_app.fonts",
]
namespaces = false
[project.scripts]
endra_app = "endra_app:run"