Guest User

Untitled

a guest
Jan 12th, 2018
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. from setuptools import setup
  2.  
  3. setup(
  4. name = 'Zipper',
  5. version = '1.0',
  6. py_modules = ['zip', 'unzip'],
  7. install_requires = ['Click',],
  8. entry_points = '''
  9. [console_scripts]
  10. zip = zip:zipFile
  11. unzip = unzip:unzipFile
  12. ''',
  13. )
Add Comment
Please, Sign In to add comment