##// END OF EJS Templates
docs: actually link to TortoiseHg in the text...
docs: actually link to TortoiseHg in the text There were no clickable links to thg before.

File last commit:

r286:a6fa088b 1.3.1 default
r292:2c70aed8 tip default
Show More
setup.py
37 lines | 1.2 KiB | text/x-python | PythonLexer
"""Setup for mercurial_keyring."""
from setuptools import setup
VERSION = '1.3.1'
LONG_DESCRIPTION = open("README.rst").read()
setup(
name="mercurial_keyring",
version=VERSION,
author='Marcin Kasperski',
author_email='Marcin.Kasperski@mekk.waw.pl',
url='https://foss.heptapod.net/mercurial/mercurial_keyring',
description='Mercurial Keyring Extension',
long_description=LONG_DESCRIPTION,
license='BSD',
py_modules=['mercurial_keyring'],
keywords="mercurial hg keyring password",
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: DFSG approved',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Operating System :: OS Independent',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Software Development :: Version Control'
],
install_requires=[
'keyring>=0.3',
'mercurial_extension_utils>=1.5.0',
],
zip_safe=True,
)