projet-reseaux-profond/pyproject.toml

41 lines
720 B
TOML
Raw Normal View History

2022-03-18 10:30:16 +00:00
[tool.poetry]
authors = [
"Laureηt <laurentfainsin@protonmail.com>",
"Damien Guillotin <damien.guillotin@etu.inp-n7.fr>",
"Pierre-Eliot Jourdan <pierreliot.jourdan@etu.inp-n7.fr>",
]
description = ""
license = "MIT"
name = "projet"
version = "0.1.0"
[tool.poetry.dependencies]
2022-03-19 12:09:38 +00:00
pure-python-adb = "^0.3.0-alpha.0"
2022-03-18 10:30:16 +00:00
python = "^3.10"
2022-03-19 21:51:06 +00:00
numpy = "^1.22.3"
2022-03-20 16:38:43 +00:00
Pillow = "^9.0.1"
2022-03-18 10:30:16 +00:00
[tool.poetry.dev-dependencies]
black = "^22.1"
isort = "^5.9.3"
mypy = "^0.931"
[build-system]
build-backend = "poetry.core.masonry.api"
requires = ["poetry-core>=1.0.0"]
[tool.black]
exclude = '''
/(
\.git
\.venv
)/
'''
include = '\.pyi?$'
line-length = 120
target-version = ["py310"]
[tool.isort]
multi_line_output = 3
profile = "black"