/setup.py
Python | 38 lines | 33 code | 1 blank | 4 comment | 2 complexity | b709ffb608f9a7b50cb6af18cde0f92d MD5 | raw file
- try:
- from setuptools import setup, find_packages
- except ImportError:
- from ez_setup import use_setuptools
- use_setuptools()
- from setuptools import setup, find_packages
- #
- # from distutils.core import setup
- # from distutils.extension import Extension
- # from setuptools import setup, find_packages
- setup(
- name = "hgkeychain",
- version = '0.2.0',
- author = 'Jonathan Wight',
- author_email = 'jwight@mac.com',
- url = 'http://toxicsoftware.com',
- description = 'Mercurial Keychain Extension',
- long_description = '''hgkeychain is an extension for mercurial that lets the user use the MacOS X keychain to store passwords for remote repositories.''',
- license = 'BSD',
- requires = [],
- py_modules = ['hgkeychain'],
- keywords = "mercurial hg version",
- classifiers = [
- 'Development Status :: 4 - Beta',
- 'Environment :: MacOS X',
- 'Intended Audience :: Developers',
- 'License :: OSI Approved :: BSD License',
- 'Operating System :: MacOS :: MacOS X',
- 'Topic :: Software Development :: Libraries',
- 'Topic :: Software Development :: Libraries :: Python Modules',
- 'Topic :: Software Development :: Version Control'
- ],
- platforms = 'MacOS X',
- install_requires = ['pykeychain'],
- zip_safe = False,
- )