setup.py 313 B

12345678910111213
  1. from distutils.core import setup
  2. setup(
  3. name='pyMOTD',
  4. version='1.0.0',
  5. packages=['pymotd'],
  6. url='https://notabug.org/Clairesoftware/PyMOTD',
  7. license='GPLv3',
  8. author='Claire Desu',
  9. author_email='claire-software@riseup.net',
  10. description='A simple MOTD script written in python3'
  11. )