##// END OF EJS Templates
In case username (and maybe password) is present in url, they are removed...
In case username (and maybe password) is present in url, they are removed from it before prefix matching. This resolves unclear situation with respect to .prefix-es. Currently (as far as mercurial_keyring is considered), prefixes (in .hgrc) should always be defined without username (albeit I am considering handling both)

File last commit:

r193:b8afdf46 1.0.0 default
r198:ae4c2c2b default
Show More
setup.py
42 lines | 1.2 KiB | text/x-python | PythonLexer
Marcin Kasperski
version change
r54
Marcin Kasperski
Version number set to 1.0.0
r193 VERSION = '1.0.0'
Marcin Kasperski
Refactoring, monkeypatch_method moved to mercurial_extension_utils,...
r161
# pylint: disable=unused-import
Marcin Kasperski
Docs moved to README.txt
r35
Marcin Kasperski
preliminary setup.py
r12 try:
Marcin Kasperski
Formatting.
r151 from setuptools import setup, find_packages
Marcin Kasperski
preliminary setup.py
r12 except ImportError:
Marcin Kasperski
Formatting.
r151 from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages
Marcin Kasperski
preliminary setup.py
r12
Marcin Kasperski
Refactoring, monkeypatch_method moved to mercurial_extension_utils,...
r161 LONG_DESCRIPTION = open("README.txt").read()
Marcin Kasperski
Docs moved to README.txt
r35
Marcin Kasperski
preliminary setup.py
r12 setup(
Marcin Kasperski
Refactoring, monkeypatch_method moved to mercurial_extension_utils,...
r161 name="mercurial_keyring",
version=VERSION,
author='Marcin Kasperski',
author_email='Marcin.Kasperski@mekk.waw.pl',
url='http://bitbucket.org/Mekk/mercurial_keyring',
description='Mercurial Keyring Extension',
long_description=LONG_DESCRIPTION,
license='BSD',
py_modules=['mercurial_keyring'],
keywords="mercurial hg keyring password",
classifiers=[
Marcin Kasperski
Formatting.
r151 'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: DFSG approved',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Software Development :: Version Control'
],
Marcin Kasperski
Refactoring, monkeypatch_method moved to mercurial_extension_utils,...
r161 install_requires=[
'keyring>=0.3',
Marcin Kasperski
upgrading meu dependency to enforce windows working
r166 'mercurial_extension_utils>=1.0.0',
Marcin Kasperski
Refactoring, monkeypatch_method moved to mercurial_extension_utils,...
r161 ],
zip_safe=True,
Marcin Kasperski
Formatting.
r151 )