Remove the changelog parsing from setup.py and just hardcode the version.
[quix0rs-apt-p2p.git] / setup.py
index 189af152c34d87574d967ab46fa443afc8536c85..bf8ef6a287e4b1e15f521048ea367fb27146f67b 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.0",
     author = "Cameron Dale",
     author_email = "<camrdale@gmail.com>",
     url = "http://www.camrdale.org/apt-p2p.html",