-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
52 lines (48 loc) · 1.51 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
[tool.poetry]
name = "object-detection-yolov5"
version = "0.3.0"
description = "Object Detection using Yolov5"
authors = ["olahsymbo <olahsymbo@gmail.com>"]
readme = "README.md"
packages = [{include = "object_detection_yolov5", from = "src"}]
[tool.poetry.dependencies]
python = ">=3.9,<3.12"
fastapi = "^0.92.0"
uvicorn = "^0.20.0"
opencv-python = "^4.7.0.68"
torch = "^1.13.1"
pandas = "^1.5.3"
requests = "^2.28.2"
ipython = "^8.10.0"
pillow = "^9.4.0"
psutil = "^5.9.4"
torchvision = "^0.14.1"
pyyaml = "^6.0"
tqdm = "^4.64.1"
matplotlib = "^3.7.0"
seaborn = "^0.12.2"
websockets = "10.0"
gitpython = "^3.1.31"
scipy = "1.10"
pytest = "^7.2.1"
httpx = "^0.23.3"
flake8 = "^6.1.0"
pre-commit = "^3.3.3"
isort = "^5.12.0"
[tool.poetry.group.dev.dependencies]
mypy = "^0.971"
black = "^22.8.0"
python-semantic-release = "^7.32.1"
[tool.semantic_release]
version_variable = "pyproject.toml:version" # version location
branch = "master" # branch to make releases of
changelog_file = "CHANGELOG.md" # changelog file
build_command = "poetry build" # build dists
dist_path = "dist/" # where to put dists
upload_to_release = true # auto-create GitHub release
upload_to_pypi = false # don't auto-upload to PyPI
remove_dist = false # don't remove dists
patch_without_tag = true # patch release by default
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"