From: Brian Warner Date: Tue, 5 Dec 2006 08:29:26 +0000 (-0700) Subject: add distutils-based packaging X-Git-Tag: tahoe_v0.1.0-0-UNSTABLE~454 X-Git-Url: https://git.rkrishnan.org/?a=commitdiff_plain;h=aa943d4839a671cc13a9b8780421f5abbc611f78;p=tahoe-lafs%2Ftahoe-lafs.git add distutils-based packaging --- diff --git a/.darcs-boringfile b/.darcs-boringfile index ea6ce849..8272c129 100644 --- a/.darcs-boringfile +++ b/.darcs-boringfile @@ -38,4 +38,6 @@ ^queen-basedir($|/) ^_trial_temp($|/) ^\.buildbot($|/) +^MANIFEST$ +^dist($|/) diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 00000000..d6cf3fb9 --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1,2 @@ + +include allmydata/web/*.xhtml diff --git a/setup.py b/setup.py new file mode 100644 index 00000000..ace7750e --- /dev/null +++ b/setup.py @@ -0,0 +1,14 @@ +#! /usr/bin/python + +#from setuptools import setup, find_packages +from distutils.core import setup + +setup( + name="AllMyData", + version="0.0.1", + #packages=find_packages('.'), + packages=["allmydata"], + package_data={ 'allmydata': ['web/*.xhtml'] }, + description="AllMyData (tahoe2)", + ) +