]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/blob - setup.py
16f34be99839d125f6b4d870ff133b6eabcbfdb3
[tahoe-lafs/tahoe-lafs.git] / setup.py
1 #! /usr/bin/python
2
3 from distutils.core import setup
4 from distutils.core import Extension
5 from distutils.command.build_ext import build_ext
6 import os, sys
7
8
9 setup(
10     name="AllMyData",
11     version="0.0.1",
12     packages=["allmydata", "allmydata.test", "allmydata.util",
13               "allmydata.filetree", "allmydata.scripts",
14               ],
15     package_dir={ "allmydata": "src/allmydata",
16                   },
17     scripts = ["bin/allmydata-tahoe"],
18     package_data={ 'allmydata': ['web/*.xhtml'] },
19
20     description="AllMyData (tahoe2)",
21     )
22