-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (35 loc) · 907 Bytes
/
Copy pathpyproject.toml
File metadata and controls
40 lines (35 loc) · 907 Bytes
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
[tool.poetry]
name = "vsol_olt_client"
version = "1.0.0"
description = "V.SOL OLT Client Module"
authors = ["Kaung Yar Zar <kaung.yarzar@frontiir.net>"]
license = "MIT"
readme = "README.md"
packages = [{include = "vsol_olt_client", from = "src"}]
[tool.poetry.dependencies]
python = "^3.8"
paramiko = "^3.5.0"
[tool.poetry.group.dev.dependencies]
black = "^24.8.0"
isort = "^5.13.2"
pre-commit = "^2.12.0"
python-dotenv = "^1.0.1"
[tool.black]
line-length = 88 # Black's default line length
include = '\.pyi?$' # Include Python files
exclude = '''
/(
\.git
|\.tox
|\.venv
|build
|dist
)/
'''
[tool.isort]
profile = "black" # Use the black profile for compatibility
line_length = 88 # Match Black's line length
known_first_party = ["vsol_olt_client"] # Replace with your package name if needed
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"