-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathsetup.cfg
85 lines (85 loc) · 1.82 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
[metadata]
name = decentralizepy
version = 0.1.dev0
author = Rishi Sharma
author_email = [email protected]
license = MIT
description = A framework to write decentralized machine learning applications
keywords =
python
decentralized
ml
learning
sacs
url = https://rishisharma.netlify.app
download_url = https://gitlab.epfl.ch/risharma/decentralizepy
long_description = file: README.rst
classifiers =
Development Status :: 4 - Beta
Intended Audience :: Education
Intended Audience :: Science/Research
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Topic :: Scientific/Engineering
[options]
package_dir =
= src
packages = find:
zip_safe = False
install_requires =
numpy
torch
torchvision
matplotlib
networkx
zmq
jsonlines
pillow
smallworld
localconfig
PyWavelets
pandas
crudini
scikit-learn
lz4
fpzip
include_package_data = True
python_requires = >=3.6
[options.packages.find]
where = src
[options.extras_require]
dev =
black>22.3.0
coverage
isort
pytest
pytest-xdist
pytest-cov<2.6.0
pycodestyle
sphinx
alabaster
tox
[tool:pytest]
norecursedirs =
.git
dist
build
python_files =
test_*.py
doctest_plus = disabled
addopts = --strict
markers =
slow
remote_data
filterwarnings
mpl_image_compare
[flake8]
ignore = E203, E266, E501, W503
max-line-length = 80
max-complexity = 18
select = B,C,E,F,W,T4,B9