projet-reseaux-profond/pyproject.toml

43 lines
840 B
TOML
Raw Permalink 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 = "Rocket League sideswipe image classification deep learning project"
2022-03-18 10:30:16 +00:00
license = "MIT"
name = "DeepSwipe"
2022-03-18 10:30:16 +00:00
version = "0.1.0"
[tool.poetry.dependencies]
Pillow = "^9.0.1"
numpy = "^1.22.3"
2022-03-19 12:09:38 +00:00
pure-python-adb = "^0.3.0-alpha.0"
2022-04-13 15:50:06 +00:00
python = ">=3.10,<3.11"
tensorflow = "^2.8.0"
2022-05-12 09:39:40 +00:00
matplotlib = "^3.5.2"
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"