setup.py 515 B

12345678910111213141516
  1. '''
  2. A python module that setups the program for distribution
  3. '''
  4. from distutils.core import setup
  5. setup(name='TwitchNotifier',
  6. version='0.4.2',
  7. description='Daemon that notifies you using libnotify if followed chan '
  8. 'goes off/on. Optionally only does this once.',
  9. author='Giedrius Statkevičius',
  10. author_email='giedrius.statkevicius@gmail.com',
  11. url='https://github.com/GiedriusS/TwitchNotifier',
  12. scripts=['twitchnotifier'],
  13. py_modules=['libtn'],
  14. )