mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2024-12-19 13:07:56 +00:00
16 lines
397 B
Python
16 lines
397 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", "allmydata/test", "allmydata/util", "allmydata/scripts"],
|
|
scripts = ["bin/allmydata"],
|
|
package_data={ 'allmydata': ['web/*.xhtml'] },
|
|
description="AllMyData (tahoe2)",
|
|
)
|
|
|