# py3.3 #from packaging.core import setup # py3.2 from distutils.core import setup setup( name = 'mypkg', version = '0.7dev', author = 'Projekt Alef', author_email = 'tymoteusz.jankowski@gmail.com', packages = [ 'my_pkg', 'my_pkg/tests', 'my_pkg/plugins', ], #scritps=['bin/setup.sh',], )