-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpyproject.toml
58 lines (50 loc) · 1.07 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
[build-system]
#python = "^3.11"
requires = [
"setuptools>=42",
"wheel",
"poetry-core"
]
#build-backend = "setuptools.build_meta"
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 120
required-version = "22.3.0"
[tool.isort]
profile = "black"
line_length = 120
combine_as_imports = true
combine_star = true
known_local_folder = ["tests", "cli"]
known_first_party = ["test_utils"]
[tool.poetry]
name = "ai-ticket"
version = "0.0.1"
authors = [
"Mike Dupont <[email protected]>",
]
readme = "README.md"
description = "AI ticket"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
#packages = .
# [tool.poetry.scripts]
# [tool.poetry.dependencies]
[tool.poetry.dependencies]
#python = "3.11.4"
click = "8.1.7"
docker = "6.1.3"
[tool.poetry.group.dev.dependencies]
python = "^3.7"
pytest = "7.4.0"
pytest-cov = "4.1.0"
coverage = "7.3.1"
requests = "2.31.0"
black = "23.7.0"
pre-commit = "3.3.3"
semver = "3.0.1"
#pylint = "2.17.5"
#testcontainers = "3.7.1"