GUI/PY: change dir layout; setup.py for tomblib

Now pytomb/ contains the python library, which will be available as tomblib
qt/ contains only the qt gui
They all are directly under src/
Also, tomblib has a setup.py to install/package/develop
This commit is contained in:
boyska 2011-11-03 13:42:43 +01:00
parent 13b66a40da
commit 6aade0ffc8
15 changed files with 16 additions and 5 deletions

View File

@ -1,5 +0,0 @@
class Tomb(object):
@staticmethod
def create(tombpath, size, keypath):
print 'I am not implemented'
raise NotImplementedError

5
src/pytomb/.gitignore vendored Normal file
View File

@ -0,0 +1,5 @@
.*.swp
*.pyc
*.egg-info
build
dist

11
src/pytomb/setup.py Normal file
View File

@ -0,0 +1,11 @@
from setuptools import setup
setup(
name = 'TombLib',
version = '1.1',
packages = ['tomblib'],
test_suite = 'nose.collector'
)