setup.py 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. #!/usr/bin/env python
  2. """
  3. script to install pwman3
  4. """
  5. #from distutils.core import setup
  6. from setuptools import Command, setup
  7. import pwman
  8. setup(name=pwman.appname,
  9. version=pwman.version,
  10. description=pwman.description,
  11. author=pwman.author,
  12. author_email=pwman.authoremail,
  13. url=pwman.website,
  14. license="GNU GPL",
  15. packages=['pwman',
  16. 'pwman.data',
  17. 'pwman.data.drivers',
  18. 'pwman.exchange',
  19. 'pwman.ui',
  20. 'pwman.util'],
  21. scripts=['scripts/pwman3'],
  22. zip_safe=False,
  23. install_requires=['pycrypto>=2.6',
  24. 'colorama>=0.2.4'],
  25. classifiers=[
  26. 'Environment :: Console',
  27. 'Intended Audience :: End Users/Desktop',
  28. 'Intended Audience :: Developers',
  29. 'Intended Audience :: System Administrators',
  30. 'License :: GPL version 3',
  31. 'Operating System :: MacOS :: MacOS X',
  32. 'Operating System :: Microsoft :: Windows',
  33. 'Operating System :: POSIX',
  34. 'Programming Language :: Python',
  35. 'Requires-Python:: 2.7',]
  36. )