-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
69 lines (60 loc) · 1.82 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
[tool.poetry]
name = "miteclock"
version = "23.1"
description = "Clock in and out of mite.de quickly."
authors = ["Ilia Kurenkov <[email protected]>"]
license="MIT"
readme = "README.md"
homepage = "https://github.com/iliakur/miteclock"
repository = "https://github.com/iliakur/miteclock"
keywords = ['time-tracking', 'productivity']
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: System Administrators",
"Operating System :: Unix"
]
[tool.poetry.dependencies]
python = "^3.7"
requests = "==2.28.2"
click = "==8.1.3"
click-aliases = "==1.0.1"
backoff = "==2.2.1"
tomlkit = "==0.7.2"
attrs = "==21.4.0"
importlib-metadata = {version = "^4.10.0", python = "3.7"}
[tool.poetry.dev-dependencies]
pytest = ">=7.2" # At least v7 is needed for Python 3.11.
pytest-randomly = ">=3.3.1"
pytest-xdist = ">=1.32.0"
pytest-cov = ">=2.10.0"
tox = ">=3.14.6"
tox-pyenv = ">=1.1.0"
pre-commit = ">=2.4.0"
isort = "*"
ipython = "*"
black = {version = "^21.12b0", allow-prereleases = true}
hypothesis = "^6.31.6"
pytest-clarity = "^1.0.1"
[tool.poetry.scripts]
# If you change this, don't forget to re-generate shell completions for it.
m='miteclock.cli:main'
[tool.isort]
known_third_party = ["attrs", "backoff", "click", "click_aliases", "hypothesis", "pytest", "requests", "tomlkit"]
known_first_party = ["miteclock"]
profile = "black"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.bumpver]
current_version = "23.1"
version_pattern = "YY.INC1"
commit_message = "Release {new_version}"
commit = true
tag = true
[tool.bumpver.file_patterns]
"pyproject.toml" = [
'version = "{version}"',
]