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