-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.cfg
78 lines (72 loc) · 2.25 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
[metadata]
name = micromatch
version = 1.0
author = James Klatzow, Virginie Uhlmann
author_email = [email protected]
url = https://github.com/uhlmanngroup/muMatch
license = BSD-3-Clause
description = 3D shape correspondence
long_description = file: README.md
long_description_content_type = text/markdown
classifiers =
Intended Audience :: Science/Research
Intended Audience :: Developers
Topic :: Software Development
Topic :: Scientific/Engineering
Programming Language :: C
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: Implementation :: CPython
Operating System :: POSIX
Operating System :: Unix
Operating System :: MacOS
License :: OSI Approved :: BSD License
project_urls =
Bug Tracker = https://github.com/uhlmanngroup/muMatch/issues
Documentation = https://github.com/uhlmanngroup/muMatch#README.md
Source Code = https://github.com/uhlmanngroup/muMatch
User Support = https://github.com/uhlmanngroup/muMatch/issues
[options]
packages = find:
python_requires = >=3.6
setup_requires = setuptools_scm
# TODO: add package requirements here
install_requires =
numpy
pyyaml
matplotlib
vedo
pymeshfix
scikit-learn
jax
jaxlib
networkx[default]
joblib
ortools
ipyvtklink
tensorflow
tqdm
igl # Still in beta, cannot be installed with pip but needs to be installed with "conda install -c conda-forge igl"
[options.extras_require]
dev =
pre-commit
black
flake8
check-manifest>=0.42
pytest
[flake8]
# Ignores - https://lintlyci.github.io/Flake8Rules
# E203 Whitespace before ':' (sometimes conflicts with black)
# E501 line too long (84 > 79 characters) (sometimes too annoying)
# W503 Line break occurred before a binary operator
# C901 McCabe complexity test. Would be nice to re-enable, but takes work
# E741 ambiguous variable name 'l'
# E731 do not assign a lambda expression, use a def
ignore = E203,W503,E501,C901,E741,E731, E743
max-line-length = 79
max-complexity = 18
exclude = vendored|__init__.py|examples|setup.py