Snapshot build 2.
[quix0rs-apt-p2p.git] / setup.py
1 #!/usr/bin/env python
2
3 import sys
4 from distutils.core import setup
5
6 setup(
7     name = "apt-dht",
8     version = "0.0.0",
9     author = "Cameron Dale",
10     author_email = "<camrdale@gmail.com>",
11     url = "http://www.camrdale.org/apt-dht.html",
12     license = "GPL",
13
14     packages = ["apt_dht", "apt_dht_Khashmir"],
15
16     scripts = ['apt-dht.py']
17     )