setup.py 604 B

12345678910111213141516171819202122232425
  1. #!/usr/bin/env python
  2. """
  3. script to install pwman3
  4. """
  5. from distutils.core import setup
  6. import pwman
  7. setup(name=pwman.appname,
  8. version=pwman.version,
  9. description=pwman.description,
  10. author=pwman.author,
  11. author_email=pwman.authoremail,
  12. url=pwman.website,
  13. license="GNU GPL",
  14. packages=['pwman',
  15. 'pwman.data',
  16. 'pwman.data.drivers',
  17. 'pwman.exchange',
  18. 'pwman.ui',
  19. 'pwman.util'],
  20. scripts=['scripts/pwman3'],
  21. install_requires=['pycrypto>=2.6'],
  22. extras_require={}
  23. )