-
-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpyproject.toml
47 lines (42 loc) · 1.23 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "trellowarrior"
version = "1.3.3"
description = "Tool to sync Taskwarrior projects with Trello boards"
readme = "README.md"
requires-python = ">=3.9"
license = {file = "LICENSE"}
keywords = ["board", "easy", "project", "sync", "task", "taskwarrior", "tool", "trello"]
authors = [
{name = "Óscar García Amor", email = "ogarcia@connectical.com"}
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Natural Language :: English",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Topic :: Utilities"
]
dependencies = [
"py-trello >= 0.20.1",
"requests",
"tasklib"
]
[tool.setuptools.packages.find]
include = ["trellowarrior*"]
[tool.setuptools.package-data]
"*" = [
"trellowarrior.conf",
"CONTRIBUTING.md"
]
[project.scripts]
trellowarrior = "trellowarrior.main:main"
[project.urls]
"Bug Reports" = "https://github.com/ogarcia/trellowarrior/issues"
"Source" = "https://github.com/ogarcia/trellowarrior"