-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpyproject.toml
55 lines (45 loc) · 1.29 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
[project]
name = "torf-cli"
description = "CLI tool to create, read and edit torrent files"
readme = "README.rst"
license = {text = "GPL-3.0-or-later"}
authors = [
{ name="Random User", email="[email protected]" },
]
keywords = ["bittorrent", "torrent", "magnet", "cli"]
dynamic = ["version"] # Get version from PROJECT/__version__
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Programming Language :: Python :: 3",
]
requires-python = ">=3.7"
dependencies = [
"torf==4.*,>=4.1.2",
"pyxdg",
]
[project.optional-dependencies]
dev = [
"pytest",
"tox",
"coverage",
"pytest-cov",
"ruff",
"flake8",
"isort",
]
[project.urls]
Repository = "https://github.com/rndusr/torf-cli"
Documentation = "https://rndusr.github.io/torf-cli/torf.1.html"
"Bug Tracker" = "https://github.com/rndusr/torf-cli/issues"
Changelog = "https://raw.githubusercontent.com/rndusr/torf-cli/master/CHANGELOG"
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
include = ["torfcli*"]
[tool.setuptools.dynamic]
version = {attr = "torfcli._vars.__version__"}
[project.scripts]
torf = "torfcli:run"