-
-
Notifications
You must be signed in to change notification settings - Fork 306
/
setup.cfg
39 lines (34 loc) · 833 Bytes
/
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
[metadata]
name = gateio_new_coins_announcements_bot
long_description = file: README.md
long_description_content_type = text/markdown
license_files = LICENSE
license = 'MIT'
[options]
install_requires =
requests>=2.25
gate_api>=4.22
PyYAML>=6.0
packages =
gateio_new_coins_announcements_bot
gateio_new_coins_announcements_bot.auth
python_requires = >=3.8
package_dir =
=src
zip_safe = False
[options.extras_require]
testing =
pytest>=6.0
pytest-cov>=2.0
flake8>=3.9
tox>=3.24
; mypy>=0.910
; [options.package_data]
; gateio_new_coins_announcements_bot = py.typed
[flake8]
max-line-length = 120
; W503: https://stackoverflow.com/questions/57074300/what-is-the-recommended-way-to-break-long-if-statement-w504-line-break-after-b
extend-ignore = W503
exclude =
.git,
__pycache__,