add distutils-based packaging

This commit is contained in:
Brian Warner 2006-12-05 01:29:26 -07:00
parent c6ed1012bd
commit aa943d4839
3 changed files with 18 additions and 0 deletions

View File

@ -38,4 +38,6 @@
^queen-basedir($|/)
^_trial_temp($|/)
^\.buildbot($|/)
^MANIFEST$
^dist($|/)

2
MANIFEST.in Normal file
View File

@ -0,0 +1,2 @@
include allmydata/web/*.xhtml

14
setup.py Normal file
View File

@ -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)",
)