-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
52 lines (46 loc) · 1.41 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
[project]
name = "deepweeds"
version = "0.1.0"
authors = [
{ name="Christopher Michael-Stokes", email="[email protected]" },
]
description = "Python modules for object detection in keras. This is not intended for distribution."
readme = "README.md"
requires-python = "~=3.11"
dependencies = [
"build>=1.2.2",
"gdown>=5.2.0",
"hydra-core>=1.3.2",
"jupyter>=1.1.1",
"keras-cv>=0.9.0",
"keras-tuner>=1.4.7",
"opencv-python>=4.10.0.84",
"pandas>=2.2.3",
"pillow>=10.4.0",
"plotly>=5.24.1",
"scikit-learn>=1.5.2",
"scipy>=1.14.1",
"tensorboard-plugin-profile>=2.17.0",
"tensorflow-datasets>=4.9.6",
"tensorflow[and-cuda]~=2.17 ; sys_platform == 'linux'",
"tensorflow-metal>=1.1.0 ; sys_platform == 'darwin'",
"tensorflow>=2.17 ; sys_platform == 'darwin'",
"tensorrt>=10.5.0 ; sys_platform == 'linux'",
"types-tensorflow>=2.17.0.20240920",
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project.urls]
Homepage = "https://github.com/ChristopherMichael-Stokes/deepweeds-kerascv"
Issues = "https://github.com/ChristopherMichael-Stokes/deepweeds-kerascv/issues"
[tool.mypy]
python_version = "3.11"
warn_return_any = true
warn_unused_configs = true
ignore_missing_imports = true