mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2024-12-23 14:52:26 +00:00
15 lines
307 B
Python
15 lines
307 B
Python
|
#! /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)",
|
||
|
)
|
||
|
|