-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
83 lines (72 loc) · 1.93 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
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
81
82
83
[tool.poetry]
name = "flyswot"
version = "0.3.15"
description = "flyswot"
authors = ["Daniel van Strien <daniel.van-strien@bl.uk>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/davanstrien/flyswot"
repository = "https://github.com/davanstrien/flyswot"
documentation = "https://flyswot.readthedocs.io"
classifiers = [
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
]
[tool.poetry.urls]
Changelog = "https://github.com/davanstrien/flyswot/releases"
[tool.poetry.dependencies]
python = ">=3.8.0, <3.11.0"
rich = ">=10.1,<14.0"
toolz = ">=0.11.1,<0.13.0"
numpy = "^1.20"
Pillow = ">=8,<11"
typing_extensions = ">=3.10,<5.0"
huggingface-hub = ">=0.11.0,<0.18.0"
transformers = {extras = ["torch"], version = "^4.16.2"}
typer = ">=0.5.0"
loguru = ">=0.6,<0.8"
gitpython = "^3.1.36"
urllib3 = "^2.1.0"
[tool.poetry.dev-dependencies]
pytest = "^7.4.2"
coverage = {extras = ["toml"], version = "^7.3"}
safety = "^2.3.5"
mypy = "^1.5"
xdoctest = {extras = ["colors"], version = "^1.1.0"}
sphinx = "^6.2.1"
sphinx-autobuild = "^2021.3.14"
pre-commit = "^3.4.0"
flake8 = "^4.0.1"
black = "^22.12"
flake8-bandit = "^3.0.0"
flake8-bugbear = "^23.3.12"
flake8-docstrings = "^1.5.0"
flake8-rst-docstrings = "^0.3.0"
pep8-naming = "^0.13.2"
darglint = "^1.8.1"
reorder-python-imports = "^3.12.0"
pre-commit-hooks = "^4.3.0"
sphinx-rtd-theme = "^1.3.0"
sphinx-click = "^5.0.1"
Pygments = "^2.16.1"
hypothesis = "^6.84.2"
memory-profiler = "^0.61.0"
pytest-datafiles = "^3.0"
onnxruntime = "^1.16.3"
furo = "^2023.9.10"
myst-parser = "^2.0.0"
cogapp = "^3.3.0"
[tool.poetry.scripts]
flyswot = "flyswot.cli:main"
[tool.coverage.paths]
source = ["src", "*/site-packages"]
[tool.coverage.run]
branch = true
source = ["flyswot"]
[tool.coverage.report]
show_missing = true
fail_under = 90
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"