-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
29 lines (26 loc) · 799 Bytes
/
pyproject.toml
File metadata and controls
29 lines (26 loc) · 799 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
[project]
name = "link-stacklog"
version = "0.2.1"
description = "Link backlog management utility using a stack style interface"
readme = "README.md"
authors = [{name = "theFestest"}]
license = {text = "Apache-2.0"}
requires-python = ">=3.8"
classifiers = [
"License :: OSI Approved :: Apache Software License"
]
dependencies = [
"click",
"requests",
"beautifulsoup4",
"sqlite_utils",
]
[project.urls]
Homepage = "https://github.com/theFestest/link-stacklog"
Changelog = "https://github.com/theFestest/link-stacklog/releases"
Issues = "https://github.com/theFestest/link-stacklog/issues"
CI = "https://github.com/theFestest/link-stacklog/actions"
[project.entry-points.console_scripts]
link-stacklog = "link_stacklog.cli:cli"
[project.optional-dependencies]
test = ["pytest"]