1. # py3.3
  2. #from packaging.core import setup
  3. # py3.2
  4. from distutils.core import setup
  5.  
  6. setup(
  7.     name = 'mypkg',
  8.     version = '0.7dev',
  9.     author = 'Projekt Alef',
  10.     author_email = 'tymoteusz.jankowski@gmail.com',
  11.     packages = [
  12.         'my_pkg',
  13.         'my_pkg/tests',
  14.         'my_pkg/plugins',
  15.     ],
  16.     #scritps=['bin/setup.sh',],
  17. )