Skip to content

Commit 1c5a385

Browse files
committed
Add MANIFEST.in
1 parent 1af9ada commit 1c5a385

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.gitignore

-2
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,4 @@ var/
2323
*.egg-info/
2424
.installed.cfg
2525
*.egg
26-
MANIFEST
27-
MANIFEST.in
2826
setup.cfg

MANIFEST.in

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
include README.md LICENSE
2+
recursive-include test *

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env python
22
from distutils.core import setup
33

4-
VERSION = "1.6.0"
4+
VERSION = "1.6.1"
55

66
setup(
77
name = "PySocks",

socks.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""
22
SocksiPy - Python SOCKS module.
3-
Version 1.6.0
3+
Version 1.6.1
44
55
Copyright 2006 Dan-Haim. All rights reserved.
66
@@ -52,7 +52,7 @@
5252
-Various small bug fixes
5353
"""
5454

55-
__version__ = "1.6.0"
55+
__version__ = "1.6.1"
5656

5757
import socket
5858
import struct

0 commit comments

Comments
 (0)