-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
55 lines (51 loc) · 940 Bytes
/
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
[tool.poetry]
name = "pyutils"
version = "0.1.0"
description = "Python utility scripts"
authors = ["Michael Madden <[email protected]>"]
[tool.poetry.dependencies]
python = "^3.9"
Jinja2 = "^3.1.1"
PyYAML = "^6.0"
boto = "^2.49.0"
boto3 = "^1.21.31"
nested_dict = "^1.61"
nose = "^1.3.7"
psutil = "^5.9.0"
pytest = "^8.1.1"
python-dateutil = "^2.8.2"
requests = "^2.27.1"
simplejson = "^3.17.6"
six = "^1.16.0"
slacker = "^0.14.0"
urllib3 = "^1.26.9"
black = "^24.3.0"
flake8 = "^7.0.0"
pylint = "^3.0.1"
pandas = "^2.0.1"
rich = "^13.3.5"
pytest-xdist = "^3.3.1"
[tool.poetry.dev-dependencies]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
lint.select = [
# Pyflakes
"F",
# Pycodestyle
"E",
"W",
# isort
"I",
# flake8-bandit
"S",
# flake8-bugbear
"B",
# Pylint
"PL"
]
lint.ignore = [
# tests use assert
"S101"
]