So I am a neophile at python building and packaging.
I am confused as to whether my setup is viable, and whether there is a better way of structuring the code file-wise to enable better packaging.
In essence, I have:
/top_folder/
|___setup.py
|___file1.py
|___file2.py
|___lib/ <--- (FOLDER)
|_____ binary1
|_____ libfile1.py
|_____ libfile2.awk
|_____ __init__.py
Is a setup.py file such as this the right way to go about things?
setup(
name='myName',
version='1.0a',
#packages=['lib'],
url='http://myUrl.co.uk',
license='GPL2',
author='myAuthorName',
author_email='myAuthorEmail',
description='myDescription',
py_modules=['file1', 'file2']
)