-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
54 lines (50 loc) · 1.12 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
[tool.poetry]
name = "salarycalc"
version = "2.0"
description = "Python scripts to update Salary Calc base values."
classifiers= [
"Programming Language :: Python",
"Programming Language :: Python :: 3.7",
"License :: OSI Approved :: MIT License",
]
authors = ["Niteo <info@niteo.co>"]
homepage = "https://niteo.co/salary-calculator"
keywords = [ "salaries"]
license = "MIT"
packages = [
{ include = "salarycalc", from = "scripts" },
]
[tool.poetry.dependencies]
python = "^3.11"
"ruamel.yaml" = "*"
requests = "*"
selenium = "*"
tqdm = "*"
[tool.poetry.dev-dependencies]
black = "*"
codespell = "*"
flake8 = "*"
flake8-assertive = "*"
flake8-blind-except = "*"
flake8-bugbear = "*"
flake8-builtins = "*"
flake8-comprehensions = "*"
flake8-debugger = "*"
flake8-deprecated = "*"
flake8-docstrings = "*"
flake8-isort = "*"
flake8-mock = "*"
flake8-mutable = "*"
flake8-plone-hasattr = "*"
flake8-self = "*"
flake8-super-call = "*"
flake8-todo = "*"
flake8-tuple = "*"
mypy = "*"
pdbpp = "*"
pre-commit-hooks = "*"
pydocstyle = "<4.0.0"
yamllint = "*"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"