-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
61 lines (57 loc) · 1.39 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
[metadata]
name = metrix
version = attr: metrix.about.__version__
description = Metrics tracking through streams.
maintainer = Burton DeWilde
maintainer_email = [email protected]
license = MIT
license_files =
LICENSE
long_description = file: README.md
long_description_content_type = text/markdown
classifiers =
Development Status :: 4 - Beta
Intended Audience :: Developers
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
keywords =
metrics
streams
url = https://github.com/bdewilde/metrix
project_urls =
Documentation = https://metrix.readthedocs.io
Source Code = https://github.com/bdewilde/metrix
Bug Tracker = https://github.com/bdewilde/metrix/issues
[options]
package_dir =
= src
packages = find:
python_requires = >=3.6
install_requires =
streamz>=0.5.5
toolz>=0.11.0
[options.packages.find]
where = src
[options.extras_require]
viz =
networkx>=2.4
graphviz>=0.14
dev =
black>=19.0b0,<20.8b0
flake8>=3.8.0
mypy>=0.600
sphinx>=3.0.0,<4.0.0
pytest>=6.0.0
pytest-cov>=2.6.0
twine>=3.0.0
wheel>=0.33.5
[flake8]
exclude = .git,.github,__pycache__,build,dist,docs,tests
ignore = E203,W503
max-line-length = 88
statistics = True
per-file-ignores =
src/**/__init__.py:F401