PageRenderTime 23ms CodeModel.GetById 20ms RepoModel.GetById 0ms app.codeStats 0ms

/setup.py

https://bitbucket.org/schwa/hgkeychain/
Python | 38 lines | 33 code | 1 blank | 4 comment | 2 complexity | b709ffb608f9a7b50cb6af18cde0f92d MD5 | raw file
  1. try:
  2. from setuptools import setup, find_packages
  3. except ImportError:
  4. from ez_setup import use_setuptools
  5. use_setuptools()
  6. from setuptools import setup, find_packages
  7. #
  8. # from distutils.core import setup
  9. # from distutils.extension import Extension
  10. # from setuptools import setup, find_packages
  11. setup(
  12. name = "hgkeychain",
  13. version = '0.2.0',
  14. author = 'Jonathan Wight',
  15. author_email = 'jwight@mac.com',
  16. url = 'http://toxicsoftware.com',
  17. description = 'Mercurial Keychain Extension',
  18. long_description = '''hgkeychain is an extension for mercurial that lets the user use the MacOS X keychain to store passwords for remote repositories.''',
  19. license = 'BSD',
  20. requires = [],
  21. py_modules = ['hgkeychain'],
  22. keywords = "mercurial hg version",
  23. classifiers = [
  24. 'Development Status :: 4 - Beta',
  25. 'Environment :: MacOS X',
  26. 'Intended Audience :: Developers',
  27. 'License :: OSI Approved :: BSD License',
  28. 'Operating System :: MacOS :: MacOS X',
  29. 'Topic :: Software Development :: Libraries',
  30. 'Topic :: Software Development :: Libraries :: Python Modules',
  31. 'Topic :: Software Development :: Version Control'
  32. ],
  33. platforms = 'MacOS X',
  34. install_requires = ['pykeychain'],
  35. zip_safe = False,
  36. )