setup.py 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  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 :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
  31. 'Operating System :: MacOS :: MacOS X',
  32. 'Operating System :: Microsoft :: Windows',
  33. 'Operating System :: POSIX',
  34. 'Programming Language :: Python',
  35. 'Programming Language :: Python :: 2.7'
  36. ]
  37. )