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