X-Git-Url: https://git.mxchange.org/?p=quix0rs-apt-p2p.git;a=blobdiff_plain;f=setup.py;h=0fe378db69a43fb1380ae9ccdd4e0f78a3beb312;hp=664f390e950707dacbed81ff7de6f87a84fa9e7a;hb=650175d1ea27497e1a6f5dfb6f9493cad9c492a4;hpb=e1b99a7d84fce8e84e3a6c30fd40db18b4f0b5ad diff --git a/setup.py b/setup.py index 664f390..0fe378d 100755 --- 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.2", author = "Cameron Dale", author_email = "", - 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'] )