setup.py 1.0 KB

123456789101112131415161718192021222324252627282930
  1. from setuptools import setup
  2. setup(
  3. name="acme-tiny",
  4. use_scm_version=True,
  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. setup_requires=['setuptools_scm'],
  15. classifiers = [
  16. 'Development Status :: 5 - Production/Stable',
  17. 'Intended Audience :: System Administrators',
  18. 'License :: OSI Approved :: MIT License',
  19. 'Operating System :: OS Independent',
  20. 'Programming Language :: Python',
  21. 'Programming Language :: Python :: 2',
  22. 'Programming Language :: Python :: 2.7',
  23. 'Programming Language :: Python :: 3',
  24. 'Programming Language :: Python :: 3.3',
  25. 'Programming Language :: Python :: 3.4',
  26. 'Programming Language :: Python :: 3.5',
  27. 'Programming Language :: Python :: 3.6',
  28. ]
  29. )