PeerManager keeps a list of site names, peers are kept in a dictionary.
[quix0rs-apt-p2p.git] / setup.py
index 189af152c34d87574d967ab46fa443afc8536c85..0fe378db69a43fb1380ae9ccdd4e0f78a3beb312 100755 (executable)
--- a/setup.py
+++ b/setup.py
@@ -1,19 +1,11 @@
-#!/usr/bin/env python
+#!/usr/bin/python
 
 import sys
 from distutils.core import setup
 
-from debian_bundle import changelog
-
-f = open('debian/changelog')
-data = f.read()
-f.close()
-c = changelog.Changelog(file=data, max_blocks=1)
-del data
-
 setup(
     name = "apt-p2p",
-    version = c.full_version,
+    version = "0.1.2",
     author = "Cameron Dale",
     author_email = "<camrdale@gmail.com>",
     url = "http://www.camrdale.org/apt-p2p.html",