PeerManager keeps a list of site names, peers are kept in a dictionary.
[quix0rs-apt-p2p.git] / setup.py
index 362d38ece2176608f4662c415d236a1046248a12..0fe378db69a43fb1380ae9ccdd4e0f78a3beb312 100755 (executable)
--- a/setup.py
+++ b/setup.py
@@ -1,17 +1,17 @@
-#!/usr/bin/env python
+#!/usr/bin/python
 
 import sys
 from distutils.core import setup
 
 setup(
-    name = "apt-dht",
-    version = "0.0.0",
+    name = "apt-p2p",
+    version = "0.1.2",
     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']
     )