Only add nodes to the routing table that have responded to a request.
[quix0rs-apt-p2p.git] / setup.py
index 664f390e950707dacbed81ff7de6f87a84fa9e7a..bf8ef6a287e4b1e15f521048ea367fb27146f67b 100755 (executable)
--- a/setup.py
+++ b/setup.py
@@ -1,25 +1,17 @@
-#!/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-dht",
-    version = c.full_version,
+    name = "apt-p2p",
+    version = "0.1.0",
     author = "Cameron Dale",
     author_email = "<camrdale@gmail.com>",
-    url = "http://www.camrdale.org/apt-dht.html",
+    url = "http://www.camrdale.org/apt-p2p.html",
     license = "GPL",
 
-    packages = ["apt_dht", "apt_dht_Khashmir"],
+    packages = ["apt_p2p", "apt_p2p_Khashmir"],
 
-    scripts = ['apt-dht.py']
+    scripts = ['apt-p2p.py']
     )