-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
45 lines (38 loc) · 1.27 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
#
[project]
name = "timew"
readme = "README.rst"
keywords = ["timewarrior",]
dynamic = ["version", "dependencies", "optional-dependencies",]
authors = [
{name = "Tjaart van der Walt", email = "[email protected]"},
{name = "Scott Mcdermott", email = "[email protected]"},
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Operating System :: POSIX",
"License :: OSI Approved :: MIT License",
]
description = "Python interface to your timewarrior database"
requires-python = ">= 3.9"
[build-system]
requires = [ "setuptools",]
build-backend = "setuptools.build_meta"
[project.urls]
Issues = "https://github.com/smemsh/python-timew/issues/"
Homepage = "https://github.com/smemsh/python-timew/"
Repository = "https://github.com/smemsh/python-timew/"
Documentation = "https://github.com/smemsh/python-timew/blob/master/docs/api/modules.rst"
[tool.setuptools.dynamic]
dependencies = { file = ["requirements.in"] }
optional-dependencies.dev = { file = ["requirements-dev.txt"] }
[tool.setuptools.packages]
find = {namespaces = false}
[tool.setuptools_scm]
version_scheme = "only-version"
local_scheme = "no-local-version"
[tool.pytest.ini_options]
minversion = "6.0"
testpaths = ["tests"]
addopts = "--cov=timew -v -s"