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