setup.py 812 B

123456789101112131415161718192021
  1. from setuptools import setup, find_packages
  2. setup(
  3. name = "zc",
  4. version = "1.0",
  5. packages = find_packages(),
  6. scripts = ["zc", "git-remote-only"],
  7. install_requires = ["dnspython", "GitPython"],
  8. author = "Rob Austein",
  9. author_email = "sra@hactrn.net",
  10. url = "https://git.hactrn.net/sra/zc",
  11. description = "A DNS zone compiler",
  12. #long_description = open("README.md").read(),
  13. #long_description_content_type = "text/markdown",
  14. classifiers = [
  15. "License :: OSI Approved :: ISC License"
  16. ],
  17. )