mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2024-12-19 04:57:54 +00:00
add distutils-based packaging
This commit is contained in:
parent
c6ed1012bd
commit
aa943d4839
@ -38,4 +38,6 @@
|
||||
^queen-basedir($|/)
|
||||
^_trial_temp($|/)
|
||||
^\.buildbot($|/)
|
||||
^MANIFEST$
|
||||
^dist($|/)
|
||||
|
||||
|
2
MANIFEST.in
Normal file
2
MANIFEST.in
Normal file
@ -0,0 +1,2 @@
|
||||
|
||||
include allmydata/web/*.xhtml
|
14
setup.py
Normal file
14
setup.py
Normal 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)",
|
||||
)
|
||||
|
Loading…
Reference in New Issue
Block a user