forked from geomstats/geomstats
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
110 lines (98 loc) · 2.54 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
[metadata]
name = geomstats
version = attr: geomstats.__version__
author = Nina Miolane
author_email = [email protected]
description = Geometric statistics on manifolds
long_description = file: README.rst
long_description_content_type = text/x-rst
licence = MIT
url = http://github.com/geomstats/geomstats
project_urls =
Homepage = http://github.com/geomstats/geomstats
Documentation = https://geomstats.github.io/
Bug Tracker = http://github.com/geomstats/geomstats/-/issues
classifiers =
License :: OSI Approved :: MIT License
Development Status :: 5 - Production/Stable
Intended Audience :: Science/Research
Topic :: Scientific/Engineering
Topic :: Scientific/Engineering :: Artificial Intelligence
Topic :: Scientific/Engineering :: Mathematics
License :: OSI Approved :: MIT License
Programming Language :: Python :: 3
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
[options]
packages = find:
python_requires = >= 3.7
zip_safe = False
install_requires =
joblib >= 0.14.1
matplotlib >= 3.3.4
numpy >= 1.18.1
pandas >= 1.1.5
scikit-learn >= 0.22.1
scipy >= 1.9
[options.packages.find]
include =
geomstats
geomstats.*
[options.package_data]
* =
datasets/data/**/*
[options.extras_require]
doc =
jupyter
nbsphinx
nbsphinx_link
sphinx
sphinx_gallery
pydata-sphinx-theme
lint =
black
flake8
flake8-docstrings
isort
pre-commit
test =
pytest
pytest-cov
codecov
coverage
jupyter
graph =
networkx
autograd =
autograd >= 1.3
tensorflow =
tensorflow >= 2.2
tensorflow-probability >= 0.9
pytorch =
torch >= 1.9.1
backends = geomstats[autograd,tensorflow,pytorch]
opt = geomstats[graph]
dev = geomstats[test,lint]
all = geomstats[dev,opt,backends]
[flake8]
application_import_names = geomstats
docstring-convention = numpy
exclude = examples/*.ipynb
ignore = W503, W504
import_order_style = smarkets
max-line-length = 88
extend-ignore = E203
per-file-ignores =
geomstats/learning/_sklearn_wrapper.py: D101, D102, D105
geomstats/_backend/*:F401, D103
geomstats/visualization/*: D101, D102
geomstats/visualization/__init__.py: F401
geomstats/tests.py : D101, D102
tests/*: D100, D101, D102, D103, D106, D200, D201, D205, D400, D404, I100, I101, I201, I202
*/__init__.py: D104
[tool:pytest]
markers =
smoke: simple and basic numerical tests.
random: tests that use randomized data.