setup.py 538 B

1234567891011121314151617181920212223
  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. )