pacparser 1.4.0__tar.gz → 1.4.0.dev1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {pacparser-1.4.0 → pacparser-1.4.0.dev1}/MANIFEST.in +0 -0
- {pacparser-1.4.0 → pacparser-1.4.0.dev1}/PKG-INFO +1 -3
- {pacparser-1.4.0 → pacparser-1.4.0.dev1}/pacparser/__init__.py +0 -0
- {pacparser-1.4.0 → pacparser-1.4.0.dev1}/pacparser.egg-info/PKG-INFO +1 -3
- {pacparser-1.4.0 → pacparser-1.4.0.dev1}/pacparser.egg-info/SOURCES.txt +0 -0
- {pacparser-1.4.0 → pacparser-1.4.0.dev1}/pacparser.egg-info/dependency_links.txt +0 -0
- {pacparser-1.4.0 → pacparser-1.4.0.dev1}/pacparser.egg-info/top_level.txt +0 -0
- {pacparser-1.4.0 → pacparser-1.4.0.dev1}/pacparser_py.c +0 -0
- {pacparser-1.4.0 → pacparser-1.4.0.dev1}/setup.cfg +0 -0
- {pacparser-1.4.0 → pacparser-1.4.0.dev1}/setup.py +8 -3
|
File without changes
|
|
@@ -1,12 +1,10 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: pacparser
|
|
3
|
-
Version: 1.4.0
|
|
3
|
+
Version: 1.4.0.dev1
|
|
4
4
|
Summary: Pacparser package
|
|
5
5
|
Home-page: http://github.com/manugarg/pacparser
|
|
6
6
|
Author: Manu Garg
|
|
7
7
|
Author-email: manugarg@gmail.com
|
|
8
8
|
License: LGPL
|
|
9
|
-
Platform: UNKNOWN
|
|
10
9
|
|
|
11
10
|
python library to parse proxy auto-config (PAC) files.
|
|
12
|
-
|
|
File without changes
|
|
@@ -1,12 +1,10 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: pacparser
|
|
3
|
-
Version: 1.4.0
|
|
3
|
+
Version: 1.4.0.dev1
|
|
4
4
|
Summary: Pacparser package
|
|
5
5
|
Home-page: http://github.com/manugarg/pacparser
|
|
6
6
|
Author: Manu Garg
|
|
7
7
|
Author-email: manugarg@gmail.com
|
|
8
8
|
License: LGPL
|
|
9
|
-
Platform: UNKNOWN
|
|
10
9
|
|
|
11
10
|
python library to parse proxy auto-config (PAC) files.
|
|
12
|
-
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
@@ -43,9 +43,14 @@ def setup_dir():
|
|
|
43
43
|
return os.path.dirname(os.path.join(os.getcwd(), sys.argv[0]))
|
|
44
44
|
|
|
45
45
|
def module_path():
|
|
46
|
-
py_ver = '
|
|
47
|
-
|
|
48
|
-
|
|
46
|
+
py_ver = '*'.join([str(x) for x in sys.version_info[0:2]])
|
|
47
|
+
print('Python version: %s' % py_ver)
|
|
48
|
+
|
|
49
|
+
builddir = os.path.join(setup_dir(), 'build')
|
|
50
|
+
print('Build dir: %s' % builddir)
|
|
51
|
+
print(os.listdir(builddir))
|
|
52
|
+
|
|
53
|
+
return glob.glob(os.path.join(builddir, 'lib*%s*' % py_ver))[0]
|
|
49
54
|
|
|
50
55
|
def sanitize_version(ver):
|
|
51
56
|
ver = ver.strip()
|