-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (32 loc) · 780 Bytes
/
Copy pathpyproject.toml
File metadata and controls
38 lines (32 loc) · 780 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
[project]
name = "tinytaskmanager"
version = "1.0.0"
description = "Tiny task manager for Linux, MacOS and Unix-like systems"
readme = "README.md"
requires-python = ">=3.8"
license = { text = "MIT License" }
authors = [
{ name = "Yuri Escalianti", email = "yuriescl@gmail.com" },
]
[project.urls]
Homepage = "https://github.com/yuriescl/tinytaskmanager"
[project.scripts]
tinytaskmanager = "tinytaskmanager:main"
[dependency-groups]
dev = [
"black>=22.3.0",
"flake8>=4.0.1",
"mypy>=0.971",
"pynvim>=0.4.3",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
include = ["tinytaskmanager.py"]
[tool.hatch.build.targets.sdist]
include = [
"tinytaskmanager.py",
"README.md",
"LICENSE",
]