setup.py 974 B

12345678910111213141516171819202122232425262728
  1. from setuptools import setup
  2. setup(
  3. name="acme-tiny",
  4. version="1.0.0",
  5. url="https://github.com/diafygi/acme-tiny",
  6. author="Daniel Roesler",
  7. author_email="diafygi@gmail.com",
  8. description="A tiny script to issue and renew TLS certs from Let's Encrypt",
  9. license="MIT",
  10. py_modules=['acme_tiny'],
  11. entry_points={'console_scripts': [
  12. 'acme-tiny = acme_tiny:main',
  13. ]},
  14. classifiers = [
  15. 'Development Status :: 5 - Production/Stable',
  16. 'Intended Audience :: System Administrators'
  17. 'License :: OSI Approved :: MIT License',
  18. 'Operating System :: OS Independent',
  19. 'Programming Language :: Python',
  20. 'Programming Language :: Python :: 2',
  21. 'Programming Language :: Python :: 2.7',
  22. 'Programming Language :: Python :: 3',
  23. 'Programming Language :: Python :: 3.3',
  24. 'Programming Language :: Python :: 3.4',
  25. 'Programming Language :: Python :: 3.5',
  26. ]
  27. )