-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
80 lines (68 loc) · 2.03 KB
/
pyproject.toml
File metadata and controls
80 lines (68 loc) · 2.03 KB
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
[tool.poetry]
name = "bullet-from-a-gun"
version = "0.1.0"
description = ""
authors = ["dsthiago <thiagosd.2.18@gmail.com>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.10"
kedro = "^0.19.3"
kedro-viz = "^8.0.1"
kedro-datasets = "^2.1.0"
numpy = "^1.26.4"
scipy = "^1.13.0"
pandas = "^2.2.1"
matplotlib = "^3.8.4"
seaborn = "^0.13.2"
ipykernel = "^6.29.4"
jupyter-contrib-nbextensions = "^0.7.0"
scikit-learn = "^1.4.1.post1"
scikit-image = "^0.22.0"
fastparquet = "^2024.2.0"
torch = ">=2.0.0, !=2.0.1, !=2.1.0" # https://stackoverflow.com/a/76647180
opencv-python = "^4.9.0.80"
poetry-plugin-export = "^1.7.1"
ultralytics = "^8.2.5"
# python3 -m pip install 'git+https://github.com/facebookresearch/detectron2.git'
yolov5 = "^7.0.13"
pycocotools = "^2.0.7"
pyyaml = "^6.0.1"
coloredlogs = "^15.0.1"
supervision = "^0.22.0"
transformers = "^4.43.2"
timm = "^1.0.7"
lightning = "^2.3.3"
coco-eval = "^0.0.4"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[project]
name = "bullet_from_a_gun"
readme = "README.md"
dynamic = [ "dependencies", "version",]
[project.scripts]
bullet-from-a-gun = "bullet_from_a_gun.__main__:main"
[project.optional-dependencies]
docs = [ "docutils<0.18.0", "sphinx~=3.4.3", "sphinx_rtd_theme==0.5.1", "nbsphinx==0.8.1", "sphinx-autodoc-typehints==1.11.1", "sphinx_copybutton==0.3.1", "ipykernel>=5.3, <7.0", "Jinja2<3.1.0", "myst-parser~=0.17.2",]
[tool.kedro]
package_name = "bullet_from_a_gun"
project_name = "Bullet From A Gun"
kedro_init_version = "0.19.3"
tools = [ "Linting", "Documentation", "Data Structure", "Kedro Viz",]
example_pipeline = "False"
source_dir = "src"
[tool.ruff]
line-length = 88
show-fixes = true
select = [ "F", "W", "E", "I", "UP", "PL", "T201",]
ignore = [ "E501",]
[project.entry-points."kedro.hooks"]
[tool.ruff.format]
docstring-code-format = true
[tool.setuptools.dynamic.dependencies]
file = "requirements.txt"
[tool.setuptools.dynamic.version]
attr = "bullet_from_a_gun.__version__"
[tool.setuptools.packages.find]
where = [ "src",]
namespaces = false