-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
63 lines (53 loc) · 1.71 KB
/
pyproject.toml
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "KeyUp"
dynamic = ["version"]
description = "A simple and beautiful console-based client for Clickup written in Python"
readme = "README.md"
authors = [
{ name = "Matias Agustin Mendez", email = "matagus@gmail.com" },
]
keywords = [
"clickup", "console", "python", "cli", "command-line", "task-list", "task-manager", "task-list-manager",
"terminal-based", "clickup-api", "console-app", "inquirer", "clickup-client", "clickup-cli",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Natural Language :: English",
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development",
]
dependencies = [
"python-dotenv", "colorist", "pyclickup", "inquirer"
]
[project.urls]
Homepage = "https://github.com/matagus/keyup"
Issues = "https://github.com/matagus/keyup/issues"
Changelog = "https://github.com/matagus/keyup/releases"
Repository = "https://github.com/matagus/keyup"
[tool.hatch.version]
path = "__about__.py"
[tool.hatch.envs.default]
dependencies = [
"ipython", "ipdb"
]
[tool.hatch.envs.default.scripts]
app = "python keyup.py"
[[tool.hatch.envs.test.matrix]]
python = ["3.8", "3.9", "3.10", "3.11", "3.12"]
[tool.hatch.envs.test.scripts]
app = "python keyup.py"
[tool.ruff]
line-length = 120
[tool.black]
line-length = 120