forked from s204431/mlops-CAPTCHA
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (31 loc) · 860 Bytes
/
pyproject.toml
File metadata and controls
38 lines (31 loc) · 860 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "captcha"
version = "0.0.1"
description = "CAPTCHA project for DTU MLOps course"
authors = [
{ name = "s204431", email = "your@email.com" },
]
keywords = ["machine learning", "MLOps"]
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3",
]
readme = "README.md"
requires-python = ">=3.11"
dynamic = ["dependencies", "optional-dependencies"]
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
[tool.setuptools.dynamic.optional-dependencies]
dev = {file = ['requirements_dev.txt']}
[tool.ruff]
line-length = 120
[tool.coverage.run]
omit = ["tests/*"]
[project.scripts]
train = "captcha.train:main"
evaluate = "captcha.evaluate:main"
data = "captcha.data:main"
statistics = "captcha.dataset:main"