An IRC bot built for tubes
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
473B

  1. '''Setup file for seddy.'''
  2. from setuptools import setup, find_packages
  3. setup(
  4. name = 'seddy',
  5. version = '0.1.0',
  6. license = 'BSD',
  7. description = 'An IRC bot for tubes.',
  8. author='Thomas Mannay',
  9. author_email='tfm@airmail.cc',
  10. url='https://github.com/sys-fs/seddy',
  11. packages=find_packages(where='src'),
  12. package_dir={'': 'src'},
  13. entry_points={
  14. 'console_scripts': [
  15. 'seddy = seddy.main:main',
  16. ]
  17. },
  18. )