setup.py 673 B

123456789101112131415161718192021222324
  1. import setuptools
  2. with open("README.md", "r") as fh:
  3. long_description = fh.read()
  4. setuptools.setup(
  5. name='govroam-certificate-cli',
  6. version='1.1',
  7. author="Mike Richardson",
  8. author_email="doctor@perpetual.name",
  9. description="CLI certificate generator for Govroam",
  10. long_description=long_description,
  11. long_description_content_type="text/markdown",
  12. scripts=['generate_certs.py'],
  13. classifiers=[
  14. "Programming Language :: Python :: 2",
  15. "License :: OSI Approved :: MIT License",
  16. "Operating System :: OS Independent",
  17. ],
  18. install_requires=[
  19. "simple-roaming-certificate"
  20. ],
  21. )