-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
49 lines (41 loc) · 1.01 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 = "Sqlize Crystal Reports"
version = "1.3.0"
description = "Enthusiastic attempt at converting Crystal reports to SQL"
authors = ["Christopher Pickering"]
license = "GPL-3.0-or-later"
[tool.poetry.dependencies]
python = "^3.8.0"
lxml = "^4.9.1"
sqlparse = "^0.4.1"
pyodbc = "^5.0.0"
requests = "^2.27.1"
xmltodict = "^0.13.0"
python-dotenv = "^1.0.0"
[tool.poetry.group.dev.dependencies]
ruff = "^0.1.0"
pre-commit = "^3.0.0"
tox = "^4.0.0"
isort = "^5.10.1"
black = "^23.0.0"
[tool.black]
max_line_length = 99
exclude = '''
/(
\.git
| \.tox
| \.venv
| node_modules
# The following are specific to Black, you probably don't want those.
| blib2to3
| tests/data
)/
'''
[tool.isort]
profile = "black"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
select = ["E", "F", "B", 'A', 'Q', "ARG", "ERA","PL","RUF"]
ignore = ["E501",'PLR0912', "PLW1510"]