-
-
Notifications
You must be signed in to change notification settings - Fork 153
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (41 loc) · 1.51 KB
/
Copy pathpyproject.toml
File metadata and controls
47 lines (41 loc) · 1.51 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
[build-system]
requires = ["setuptools>=69", "wheel", "build"]
build-backend = "setuptools.build_meta"
[project]
name = "inkycal"
description = "InkyCal – e-paper calendar/dashboard for Raspberry Pi"
readme = "README.md"
requires-python = ">=3.9"
license = { text = "GPL-3.0-only" }
authors = [{ name = "aceinnolab", email = "inkycal@aceinnolab.com" }]
dynamic = ["dependencies", "version"]
# (optional but nice)
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Intended Audience :: Education",
"Natural Language :: English",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]
[project.urls]
Homepage = "https://github.com/aceinnolab/Inkycal"
Issues = "https://github.com/aceinnolab/Inkycal/issues"
Changelog = "https://github.com/aceinnolab/Inkycal/releases"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
include = ["inkycal*"] # change if your top-level package name differs
[tool.setuptools.dynamic]
dependencies = { file = ["requirements.txt"] }
version = { file = ["_version.txt"] }
[tool.setuptools.package-data]
"inkycal" = [
"**/*.html", "**/*.jinja2", "**/*.css", "**/*.js", "**/*.json",
"assets/**/*", "static/**/*", "templates/**/*", "data/**/*"
]