setup.py 662 B

12345678910111213141516
  1. from setuptools import setup, find_packages
  2. #from distutils.core import setup
  3. setup(
  4. name = 'simplemotds',
  5. packages = ['simplemotds'],
  6. include_package_data=True,
  7. version = '0.23',
  8. description = 'Configurable package that returns the message of the day (motd)',
  9. author='Rodrigo Garcia',
  10. author_email="strysg@riseup.net",
  11. license="GPLv3",
  12. url="https://github.com/strymsg/python-simplemotds",
  13. classifiers = ["Programming Language :: Python :: 3","License :: OSI Approved :: GNU General Public License v3 (GPLv3)", "Development Status :: 4 - Beta", "Intended Audience :: Developers", "Operating System :: OS Independent"],
  14. )