setup.py 913 B

12345678910111213141516171819202122232425262728293031323334
  1. # -*- coding: utf-8 -*-
  2. from setuptools import setup
  3. import os
  4. import sys
  5. sys.path.insert(0,os.path.join(os.path.dirname(__file__),'hackercodecs'))
  6. import hackercodecs
  7. setup(name="hackercodecs",
  8. version="0.2",
  9. description="A set of codecs for hackers",
  10. url="https://github.com/jdukes/hackercodecs",
  11. author="Josh Dukes",
  12. author_email="hex@neg9.org",
  13. license="MIT",
  14. keywords = "hacker, codecs, CTF",
  15. long_description=hackercodecs.__doc__,
  16. packages=["hackercodecs"])
  17. # Copyright © 2012–2015 Josh Dukes <hex@neg9.org> and contributors.
  18. #
  19. # This is free software: you may copy, modify, and/or distribute this work
  20. # under the terms of the Expat License.
  21. # No warranty expressed or implied. See the file ‘LICENSE.Expat’ for details.
  22. # Local variables:
  23. # coding: utf-8
  24. # mode: text
  25. # mode: markdown
  26. # End:
  27. # vim: fileencoding=utf-8 filetype=markdown :