-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (36 loc) · 926 Bytes
/
pyproject.toml
File metadata and controls
40 lines (36 loc) · 926 Bytes
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
[build-system]
requires = ["setuptools>=80.9.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "riceclassifier"
description = "Deep learning algorithm to classify grains of rice."
authors = [
{name = "Yahia Nassab"}
]
classifiers = [
"Natural Language :: English",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: Only",
]
requires-python = "==3.10.*"
dynamic = ["version"]
dependencies = [
"keras==2.9.*",
"numpy==1.22.*",
]
[project.optional-dependencies]
testing = [
"pytest==7.4.2",
"pytest-cov==4.0.0",
]
[tool.setuptools.packages.find]
where = ["src"]
include = ["backend*"]
[tool.pytest.ini_options]
addopts = "--cov=backend --cov-report=term-missing"
testpaths = [
"tests/backend",
]