-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathsetup.cfg
More file actions
37 lines (35 loc) · 839 Bytes
/
setup.cfg
File metadata and controls
37 lines (35 loc) · 839 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
[metadata]
name = deepsphere
version = attr: deepsphere.__version__
author = Fluri Janis
author_email = janis.fluri@inf.ethz.ch
url = https://github.com/deepsphere
description = DeepSphere in TF 2.x for healpy.
long_description = file: README.md
long_description_content_type = text/markdown
keywords = healpy, graph convolutions
[options]
package_dir=
=src
install_requires =
numpy
scipy
healpy
tensorflow>=2.14.0
matplotlib
PyGSP @ git+https://github.com/jafluri/pygsp.git@sphere-graphs
tqdm
pytest
scikit-learn
pytest
pytest-cov
pre-commit
black
flake8
[flake8]
# Recommend matching the black line length (default 88),
# rather than using the flake8 default of 79:
max-line-length = 120
extend-ignore =
# See https://github.com/PyCQA/pycodestyle/issues/373
E203,W503