This repository has been archived by the owner on Oct 4, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
63 lines (56 loc) · 1.6 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
[tool.poetry]
name = "sprint-datapusher"
version = "0.1.2"
description = "A tool to read csv files, transform to json and push to sprint-webserver."
authors = ["Stig B. Dørmænen <[email protected]>", "Heming Harnæs <[email protected]"]
license = "Apache-2.0"
readme = "README.md"
homepage = "https://github.com/heming-langrenn/sprint-excel/tree/main/datapusher"
repository = "https://github.com/heming-langrenn/sprint-excel"
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
[tool.poetry.dependencies]
python = "^3.7"
PyYAML = "^5.3.1"
click = "^7.1.2"
jsonpickle = "^1.4.1"
watchdog = "^1.0.1"
pandas = "^1.1.5"
requests = "^2.25.1"
python-dotenv = "^0.15.0"
[tool.poetry.dev-dependencies]
pytest = "^6.1.1"
black = "^20.8b1"
flake8 = "^3.8.4"
flake8-black = "^0.2.1"
mypy = "^0.782"
pytype = {version = "^2020.2.20", python = "3.7"}
flake8-annotations = "^2.4.1"
flake8-bandit = "^2.1.2"
flake8-bugbear = "^20.1.4"
flake8-docstrings = "^1.5.0"
flake8-import-order = "^0.18.1"
darglint = "^1.5.5"
flake8-assertive = "^1.2.1"
pytest-cov = "^2.10.1"
deepdiff = "^5.0.2"
pytest-mock = "^3.3.1"
pep8-naming = "^0.11.1"
safety = "^1.9.0"
codecov = "^2.1.10"
[tool.poetry.scripts]
sprint_datapusher = "sprint_datapusher.datapusher:cli"
[tool.coverage.paths]
source = ["src", "*/site-packages"]
[tool.coverage.run]
branch = false
source = ["sprint_datapusher"]
[tool.coverage.report]
show_missing = true
fail_under = 50
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"