setup.py
changeset 2 d3ffa15f5886
child 7 776ba4914dfc
equal deleted inserted replaced
1:ee31f1bf17c1 2:d3ffa15f5886
       
     1 #!/usr/bin/env python3.2
       
     2 
       
     3 from distutils.core import setup
       
     4 
       
     5 setup(
       
     6     name='pycolib',
       
     7     version='0.0.1',
       
     8     description='Library of small auxiliary modules',
       
     9     author='Radek Brich',
       
    10     author_email='radek.brich@devl.cz',
       
    11     url='http://hg.devl.cz/pycolib',
       
    12     packages=['pycolib'],
       
    13     )
       
    14