-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
49 lines (40 loc) · 1.1 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
[tool.poetry]
name = "loop-workday-upload"
version = "0"
description = "Upload data from Workday to Loop"
license = "MIT"
authors = ["Kristaps Berzinch <[email protected]>"]
repository = "https://github.com/RoboJackets/loop-workday-upload"
[tool.poetry.dependencies]
python = "^3.10"
requests = "2.32.3"
selenium = "4.29.0"
webdriver-manager = "4.0.2"
selenium-wire = "5.1.0"
blinker = "1.7.0"
[tool.poetry.group.dev.dependencies]
types-requests = "^2.28.11.2"
black = "25.1.0"
flake8 = "7.1.2"
flake8-black = "0.3.6"
flake8-bugbear = "24.12.12"
flake8-import-order = "0.18.2"
mypy = "1.15.0"
pylint = "3.3.5"
[tool.poetry.scripts]
workday-upload = 'loop_workday_upload:main'
[tool.black]
line-length = 120
target-version = ['py38']
[tool.pylint.basic]
disable = ["line-too-long,logging-fstring-interpolation,unused-variable,wrong-import-order"]
[tool.pylint.format]
expected-line-ending-format = "LF"
max-line-length = 120
[tool.pylint.variables]
allow-global-unused-variables = false
[tool.mypy]
disallow_untyped_calls = false
[build-system]
requires = ["poetry_core==2.1.1"]
build-backend = "poetry.core.masonry.api"