-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.cfg
62 lines (50 loc) · 1.16 KB
/
setup.cfg
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
[metadata]
name = deepclr
version = attr: deepclr.VERSION
description = DeepCLR: Correspondence-Less Architecture for Deep End-to-End Point Cloud Registration
long_description = file: README.md, LICENSE
license = Apache License 2.0
classifiers =
Framework :: PyTorch
License :: OSI Approved :: Apache Software License
Programming Language :: Python :: 3
Programming Language :: Python :: 3.8
[options]
zip_safe = False
include_package_data = False
packages = find:
[options.packages.find]
include =
deepclr
deepclr.*
[build-system]
requires =
setuptools >= 40.9.0
wheel
[flake8]
exclude =
.mypy_cache
.pytest_cache
.venv
venv
.git
__pycache__
configs
doc
docker
extern
max-line-length = 120
[mypy]
# files checked by default:
files = deepclr/**/*.py,scripts/**/*.py,tests/**/*.py
# many libraries do not have type hints
ignore_missing_imports = True
# various options
disallow_incomplete_defs = True
check_untyped_defs = True
warn_unused_ignores = True
[tool:pytest]
filterwarnings =
ignore:.*Using or importing the ABCs*:DeprecationWarning
ignore::DeprecationWarning:transforms3d
testpaths = tests