mirror of
https://github.com/Llewellynvdm/Tomb.git
synced 2024-11-15 17:17:09 +00:00
6aade0ffc8
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
12 lines
163 B
Python
12 lines
163 B
Python
from setuptools import setup
|
|
|
|
setup(
|
|
name = 'TombLib',
|
|
version = '1.1',
|
|
packages = ['tomblib'],
|
|
|
|
test_suite = 'nose.collector'
|
|
)
|
|
|
|
|