-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
39 lines (35 loc) · 1.02 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
; https://setuptools.readthedocs.io/en/stable/userguide/declarative_config.html#metadata
; https://packaging.python.org/guides/distributing-packages-using-setuptools/
[metadata]
name = bandwidth-monitor
version = attr: src.bandwidth_monitor.__version__
url = https://github.com/mburszley/bandwidth-monitor
author = Maximilian Burszley
author_email = [email protected]
license = MIT
license_file = LICENSE.txt
description = A wrapper for speedtest.net to get time-series data on local bandwidth availability.
long_description = file: README.rst
[options]
zip_safe = True
include_package_data = True
package_dir =
= src
packages = find:
install_requires =
schedule ~=0.6.0
speedtest-cli ~=2.1.0
python_requires = >=3.8.0
[options.packages.find]
where = src
; https://flake8.pycqa.org/en/stable/user/options.html
[flake8]
use-flake8-tabs = true
blank-lines-indent = never
max-doc-length = 80
max-line-length = 100
max-complexity = 10
; https://github.com/google/yapf/tree/v0.30.0#formatting-style
[yapf]
use_tabs = true
column_limit = 100