-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
28 lines (25 loc) · 805 Bytes
/
pyproject.toml
File metadata and controls
28 lines (25 loc) · 805 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
[tool.poetry]
name = "taskc"
version = "0.3.0"
description = "A python client library for taskwarrior's taskd"
authors = ["Jack Laxson <jackjrabbit@gmail.com>"]
license = "LGPL-3.0+"
repository = "https://github.com/jrabbit/taskd-client-py"
documentation = "https://taskd-client-py.readthedocs.io/en/latest/"
classifiers = ["Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Internet"
]
keywords = ["taskwarrior", "taskd", "client", "todo"]
[tool.poetry.dependencies]
python = "^3.6"
attrs = "*"
six = "*"
[tool.poetry.dev-dependencies]
docker = "*"
coverage = "*"
sphinx = "*"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"