File tree Expand file tree Collapse file tree 3 files changed +29
-0
lines changed Expand file tree Collapse file tree 3 files changed +29
-0
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ __pycache__/
6
6
.tox
7
7
.coverage *
8
8
! .coveragerc
9
+ .venv
9
10
10
11
# shared libs installed by 'setup.py test'
11
12
/Lib /* .so *
Original file line number Diff line number Diff line change 22
22
--swallow-optional-blank-lines
23
23
-T PyCFunction
24
24
-T PyObject
25
+ -T PyMethodDef
26
+ -T LDAP
27
+ -T LDAPMod
28
+ -T LDAPMessage
29
+ -T LDAPControl
30
+ -T LDAPObject
31
+ -T sasl_interact_t
Original file line number Diff line number Diff line change
1
+ PYTHON =python3
2
+ VENV =.venv
3
+ AUTOPEP8_OPTS =-i -j0 --aggressive
4
+
1
5
.NOTPARALLEL :
2
6
3
7
.PHONY : all
9
13
rm -f .coverage .coverage.*
10
14
find . -name ' *.py[co]' -or -name ' *.so*' -or -name ' *.dylib' -delete
11
15
find . -depth -name __pycache__ -exec rm -rf {} \;
16
+
17
+ .PHONY : indent
18
+ indent :
19
+ indent Modules/* .c Modules/* .h
20
+ rm -f Modules/* .c~ Modules/* .h~
21
+
22
+ $(VENV ) /bin/pip :
23
+ $(PYTHON ) -m venv $(VENV )
24
+ $@ install --upgrade pip setuptools
25
+
26
+ $(VENV ) /bin/autopep8 : $(VENV ) /bin/pip
27
+ $< install autopep8
28
+
29
+ .PHONY : autopep8
30
+ autopep8 : $(VENV ) /bin/autopep8
31
+ $< $(AUTOPEP8_OPTS ) -r Demo Lib Tests setup.py
32
+
You can’t perform that action at this time.
0 commit comments