setup.py 381 B

12345678910111213141516
  1. #!/usr/bin/env python
  2. from distutils.core import setup
  3. from libpwman import VERSION
  4. setup(
  5. name = "pwman",
  6. version = "%d" % VERSION,
  7. description = "Lightweight password manager",
  8. author = "Michael Buesch",
  9. author_email = "m@bues.ch",
  10. url = "git://git.bu3sch.de/pwman.git",
  11. py_modules = [ "libpwman", "cryptsql", ],
  12. scripts = [ "pwman", "pwman-import-pwmanager", ]
  13. )