From aa943d4839a671cc13a9b8780421f5abbc611f78 Mon Sep 17 00:00:00 2001 From: Brian Warner Date: Tue, 5 Dec 2006 01:29:26 -0700 Subject: [PATCH] add distutils-based packaging --- .darcs-boringfile | 2 ++ MANIFEST.in | 2 ++ setup.py | 14 ++++++++++++++ 3 files changed, 18 insertions(+) create mode 100644 MANIFEST.in create mode 100644 setup.py 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)", + ) + -- 2.37.2