-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (30 loc) · 1.01 KB
/
pyproject.toml
File metadata and controls
34 lines (30 loc) · 1.01 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
[build-system]
requires = ["setuptools>=75.3"]
build-backend = "setuptools.build_meta"
[project]
name = "time_until"
authors = [
{ name="Thiago Jacinto", email="46906069+thiagojacinto@users.noreply.github.com" },
]
description = "Application that calculate time duration until reach a given date"
readme = "README.md"
requires-python = ">=3.10.15"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Development Status :: 5 - Production/Stable"
]
dynamic = [
"version",
"dependencies"
]
[project.scripts]
time_until = "time_until:app"
[project.urls]
"Homepage" = "https://github.com/thiagojacinto/time-until-cli"
"Bug Tracker" = "https://github.com/thiagojacinto/time-until-cli/issues"
"General Discussions" = "https://github.com/thiagojacinto/time-until-cli/discussions"
[tool.setuptools.dynamic]
version = {attr = "time_until.__version__"}
dependencies = {file = ["requirements-lock.txt"]}