mirror of
https://github.com/Llewellynvdm/Tomb.git
synced 2024-11-10 15:10:55 +00:00
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:
parent
13b66a40da
commit
6aade0ffc8
@ -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
5
src/pytomb/.gitignore
vendored
Normal file
@ -0,0 +1,5 @@
|
||||
.*.swp
|
||||
*.pyc
|
||||
*.egg-info
|
||||
build
|
||||
dist
|
11
src/pytomb/setup.py
Normal file
11
src/pytomb/setup.py
Normal file
@ -0,0 +1,11 @@
|
||||
from setuptools import setup
|
||||
|
||||
setup(
|
||||
name = 'TombLib',
|
||||
version = '1.1',
|
||||
packages = ['tomblib'],
|
||||
|
||||
test_suite = 'nose.collector'
|
||||
)
|
||||
|
||||
|
0
src/gui/.gitignore → src/qt/.gitignore
vendored
0
src/gui/.gitignore → src/qt/.gitignore
vendored
Loading…
Reference in New Issue
Block a user