forked from codejudas/py-proxy-protocol
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
41 lines (36 loc) · 751 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
40
41
[metadata]
name = pyproxy
version = 2.0.0
description = Python module for implementing the client side of the HAPROXY proxy protocol
[options]
zip_safe = False
packages = find:
install_requires =
requests
[options.extras_require]
test =
flake8
isort
pylint
requests
six
gevent
mock
sh
requests
[pylint.'MESSAGES CONTROL']
disable =
invalid-name,
too-few-public-methods,
missing-function-docstring,
missing-module-docstring,
missing-class-docstring
[pylint.'TYPECHECK']
# I believe the astroid module confuses pylint and makes it
# complain on things like 'socket.AF_INET' saying there's
# no such member
ignored-modules =
socket,
struct
[flake8]
# flake8 customizations go here