-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
62 lines (57 loc) · 1.28 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
58
59
60
61
62
[tool.poetry]
name = "create-python-app"
version = "0.0.1"
description = ""
authors = [
"My Name <[email protected]>"
]
license = ""
[build-system]
requires = ["poetry-core>=1.7.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 120
skip-string-normalization = false
target-version = ['py310']
include = '\.pyi?$'
exclude = '''
/(
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
'''
color = true
[tool.isort]
balanced_wrapping = true
include_trailing_comma = true
known_first_party = "example"
known_third_party = [
"boto3", # Common for AWS
"django", # Common web framework, if used
"flask", # Common web framework, if used
"jinja2", # Common templating engine
"matplotlib", # Common for plotting
"numpy", # Common for numerical operations
"pandas", # Common for data manipulation
"pendulum", # Common for date time
"pytest", # Common for testing
"requests", # Common for HTTP requests
"sqlalchemy", # Common ORM for databases
]
multi_line_output = 3
profile = "black"
line_length = 120
[tool.poetry.dependencies]
python = "^3.10"
[tool.poetry.group.dev.dependencies]
pre-commit = ">=3.5.0"
pytest = "^7.3.1"
pytest-cov = "^4.1.0"