created init skeleton

This commit is contained in:
Bernhard Haslhofer 2012-12-05 15:43:58 -05:00
commit 2daeac8d02
21 changed files with 18 additions and 0 deletions

1
CHANGES.txt Normal file
View File

@ -0,0 +1 @@
v<version>, <date> -- Initial release.

0
LICENSE.txt Normal file
View File

2
MANIFEST.in Normal file
View File

@ -0,0 +1,2 @@
include *.txt
recursive-include docs *.txt

6
README.txt Normal file
View File

@ -0,0 +1,6 @@
===========
Resync
===========
Resync is xyz. Typical usage
often looks like this::

0
bin/resync Normal file
View File

0
docs/documentation.txt Normal file
View File

0
resync/__init__.py Normal file
View File

0
resync/changelist.py Normal file
View File

0
resync/dump.py Normal file
View File

0
resync/inventory.py Normal file
View File

0
resync/resource.py Normal file
View File

View File

0
resync/test/__init__.py Normal file
View File

View File

0
resync/test/test_dump.py Normal file
View File

View File

View File

View File

0
resync/test/test_util.py Normal file
View File

0
resync/utils.py Normal file
View File

9
setup.py Normal file
View File

@ -0,0 +1,9 @@
from distutils.core import setup
setup(
name='resync',
version='0.1dev',
packages=['resync',],
license='Creative Commons Attribution-Noncommercial-Share Alike license',
long_description=open('README.txt').read(),
)