##// END OF EJS Templates
Formatting.
Marcin Kasperski -
r151:fb526db1 default
parent child Browse files
Show More
@@ -117,7 +117,7 b' KEYRING_SERVICE = "Mercurial"'
117 117
118 118 ############################################################
119 119
120 def monkeypatch_method(cls,fname=None):
120 def monkeypatch_method(cls, fname=None):
121 121 def decorator(func):
122 122 local_fname = fname
123 123 if local_fname is None:
@@ -1,37 +1,37 b''
1 1
2 version = '0.6.7'
2 version = '0.7.0'
3 3
4 4 try:
5 from setuptools import setup, find_packages
5 from setuptools import setup, find_packages
6 6 except ImportError:
7 from ez_setup import use_setuptools
8 use_setuptools()
9 from setuptools import setup, find_packages
7 from ez_setup import use_setuptools
8 use_setuptools()
9 from setuptools import setup, find_packages
10 10
11 11 long_description = open("README.txt").read()
12 12
13 13 setup(
14 name = "mercurial_keyring",
15 version = version,
16 author = 'Marcin Kasperski',
17 author_email = 'Marcin.Kasperski@mekk.waw.pl',
18 url = 'http://bitbucket.org/Mekk/mercurial_keyring',
19 description = 'Mercurial Keyring Extension',
20 long_description = long_description,
21 license = 'BSD',
22 py_modules = ['mercurial_keyring'],
23 keywords = "mercurial hg keyring password",
24 classifiers = [
25 'Development Status :: 4 - Beta',
26 'Environment :: Console',
27 'Intended Audience :: Developers',
28 'License :: DFSG approved',
29 'License :: OSI Approved :: BSD License',
30 'Operating System :: OS Independent',
31 'Topic :: Software Development :: Libraries',
32 'Topic :: Software Development :: Libraries :: Python Modules',
33 'Topic :: Software Development :: Version Control'
34 ],
35 install_requires = ['keyring>=0.3'],
36 zip_safe = True,
37 )
14 name = "mercurial_keyring",
15 version = version,
16 author = 'Marcin Kasperski',
17 author_email = 'Marcin.Kasperski@mekk.waw.pl',
18 url = 'http://bitbucket.org/Mekk/mercurial_keyring',
19 description = 'Mercurial Keyring Extension',
20 long_description = long_description,
21 license = 'BSD',
22 py_modules = ['mercurial_keyring'],
23 keywords = "mercurial hg keyring password",
24 classifiers = [
25 'Development Status :: 4 - Beta',
26 'Environment :: Console',
27 'Intended Audience :: Developers',
28 'License :: DFSG approved',
29 'License :: OSI Approved :: BSD License',
30 'Operating System :: OS Independent',
31 'Topic :: Software Development :: Libraries',
32 'Topic :: Software Development :: Libraries :: Python Modules',
33 'Topic :: Software Development :: Version Control'
34 ],
35 install_requires = ['keyring>=0.3'],
36 zip_safe = True,
37 )
General Comments 0
You need to be logged in to leave comments. Login now