setup.py 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. #!/usr/bin/env python
  2. """
  3. script to install pwman3
  4. """
  5. from setuptools 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. zip_safe=False,
  22. install_requires=['pycrypto>=2.6',
  23. 'colorama>=0.2.4'],
  24. classifiers=[
  25. 'Environment :: Console',
  26. 'Intended Audience :: End Users/Desktop',
  27. 'Intended Audience :: Developers',
  28. 'Intended Audience :: System Administrators',
  29. 'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
  30. 'Operating System :: MacOS :: MacOS X',
  31. 'Operating System :: Microsoft :: Windows',
  32. 'Operating System :: POSIX',
  33. 'Programming Language :: Python',
  34. 'Programming Language :: Python :: 2.7'
  35. ],
  36. test_suite='pwman.tests'
  37. )