-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
54 lines (47 loc) · 1.5 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
[tool]
[tool.poetry]
name = "boxsup_pytorch"
version = "0.0.0"
homepage = "https://github.com/makanu/boxsup-pytorch"
description = "The BoxSup-pytorch is an implementation of the BoxSup Algorithm in pytorch. Since the original paper has no available implementation this implementation is only based on the paper. They may be a few differences to the explanations from the paper."
authors = ["Matti Kaupenjohann <[email protected]>"]
readme = "README.md"
license = "GPLv3"
classifiers=[
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Natural Language :: English',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
]
include = [
"LICENSE",
"boxsup_pytorch/py.typed"
]
[tool.poetry.dependencies]
python = "^3.7"
importlib_metadata = "^3.4.0"
[tool.poetry.dev-dependencies]
mkdocs-material = "^6.1.5"
pytest = "^6.0"
pytest-cov = "^2.10.1"
flake8 = "^3.8.4"
flake8-docstrings = "1.5.0"
flake8-import-order = "0.18.1"
flake8-colors = "0.1.6"
black = "22.3.0"
mypy = "0.790"
yamllint = "^1.25.0"
pep440 = "^0.1.0"
[tool.black]
line-length=100
[tool.pylint.reports]
output-format="colorized"
reports="y"
include-ids="yes"
msg-template="{msg_id}:{line:3d},{column}: {obj}: {msg}"
[tool.pytest.ini_options]
addopts = "--cov=boxsup_pytorch --cov-branch --cov-report term-missing -vv --color=yes --cov-fail-under 100"
python_files = "tests.py test_*.py *_tests.py"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"