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