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