##// END OF EJS Templates
Version number set to 1.3.1
Marcin Kasperski -
r286:a6fa088b 1.3.1 default
parent child Browse files
Show More
@@ -1,37 +1,37 b''
1 """Setup for mercurial_keyring."""
1 """Setup for mercurial_keyring."""
2
2
3 from setuptools import setup
3 from setuptools import setup
4
4
5 VERSION = '1.3.0'
5 VERSION = '1.3.1'
6 LONG_DESCRIPTION = open("README.rst").read()
6 LONG_DESCRIPTION = open("README.rst").read()
7
7
8 setup(
8 setup(
9 name="mercurial_keyring",
9 name="mercurial_keyring",
10 version=VERSION,
10 version=VERSION,
11 author='Marcin Kasperski',
11 author='Marcin Kasperski',
12 author_email='Marcin.Kasperski@mekk.waw.pl',
12 author_email='Marcin.Kasperski@mekk.waw.pl',
13 url='https://foss.heptapod.net/mercurial/mercurial_keyring',
13 url='https://foss.heptapod.net/mercurial/mercurial_keyring',
14 description='Mercurial Keyring Extension',
14 description='Mercurial Keyring Extension',
15 long_description=LONG_DESCRIPTION,
15 long_description=LONG_DESCRIPTION,
16 license='BSD',
16 license='BSD',
17 py_modules=['mercurial_keyring'],
17 py_modules=['mercurial_keyring'],
18 keywords="mercurial hg keyring password",
18 keywords="mercurial hg keyring password",
19 classifiers=[
19 classifiers=[
20 'Development Status :: 4 - Beta',
20 'Development Status :: 4 - Beta',
21 'Environment :: Console',
21 'Environment :: Console',
22 'Intended Audience :: Developers',
22 'Intended Audience :: Developers',
23 'License :: DFSG approved',
23 'License :: DFSG approved',
24 'License :: OSI Approved :: BSD License',
24 'License :: OSI Approved :: BSD License',
25 'Programming Language :: Python :: 2',
25 'Programming Language :: Python :: 2',
26 'Programming Language :: Python :: 3',
26 'Programming Language :: Python :: 3',
27 'Operating System :: OS Independent',
27 'Operating System :: OS Independent',
28 'Topic :: Software Development :: Libraries',
28 'Topic :: Software Development :: Libraries',
29 'Topic :: Software Development :: Libraries :: Python Modules',
29 'Topic :: Software Development :: Libraries :: Python Modules',
30 'Topic :: Software Development :: Version Control'
30 'Topic :: Software Development :: Version Control'
31 ],
31 ],
32 install_requires=[
32 install_requires=[
33 'keyring>=0.3',
33 'keyring>=0.3',
34 'mercurial_extension_utils>=1.5.0',
34 'mercurial_extension_utils>=1.5.0',
35 ],
35 ],
36 zip_safe=True,
36 zip_safe=True,
37 )
37 )
General Comments 0
You need to be logged in to leave comments. Login now