-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
65 lines (58 loc) · 1.42 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
[tool.poetry]
name = "tracktime"
version = "0.10.0"
description = "Time tracking library with command line interface."
authors = ["Sumner Evans <[email protected]>"]
license = "GPL-3.0-or-later"
readme = "README.md"
repository = "https://github.com/sumnerevans/tracktime"
keywords = ["time", "tracking"]
classifiers = [
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
"Development Status :: 4 - Beta",
# Indicate who your project is intended for
"Intended Audience :: End Users/Desktop",
"Operating System :: POSIX",
]
[tool.poetry.scripts]
tt = "tracktime.__main__:main"
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/sumnerevans/tracktime/issues"
[tool.poetry.dependencies]
python = "^3.7"
pdfkit = "^1.0.0"
pyyaml = "^6.0.0"
requests = "^2.24.0"
tabulate = "^0.8.7"
[tool.poetry.dev-dependencies]
black = "^21.12b0"
docutils = "^0.17"
flake8 = "^3.8.3"
flake8-pep3101 = "^1.3.0"
jedi = "^0.17.2"
mypy = "^0.782"
pytest = "^6.0.1"
pytest-cov = "^2.10.1"
rope = "^0.17.0"
rst2html5 = "^1.10.6"
selenium = "^3.141.0"
termcolor = "^1.1.0"
yapf = "^0.30.0"
flake8-isort = "^4.1.1"
isort = "^5.10.1"
pre-commit = "^2.17.0"
[tool.pytest.ini_options]
addopts = """
-vvv
--doctest-modules
--ignore-glob='examples/*'
--ignore-glob='cicd/*'
--cov=tracktime
--cov-report html
--cov-report term
"""
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"