Reorganised the file structure

This commit is contained in:
2010-01-26 17:07:58 +00:00
parent 539d6b16f4
commit 23019ab3fa
7 changed files with 9 additions and 2 deletions

1
.gitignore vendored
View File

@@ -4,3 +4,4 @@ debian/tvorganise*
build/
*.egg-info
python-build-stamp-2.5
dist/

View File

@@ -3,7 +3,7 @@ all:
clean:
rm -f *.pyc
rm -f test/*.pyc
rm -f tests/*.pyc
rm -rf build
rm -f python-build-stamp-2.5
rm -rf tvorganise.egg-info

View File

3
setup.py Normal file → Executable file
View File

@@ -1,3 +1,6 @@
#!/usr/bin/env python
#encoding:utf-8
from setuptools import setup, find_packages
setup(
name = 'tvorganise',

View File

@@ -1,3 +1,6 @@
from test import testtvorganise
#!/usr/bin/env python
#encoding:utf-8
from tests import testtvorganise
testtvorganise.run()