##// END OF EJS Templates
slightly updated description
Marcin Kasperski -
r34:269765b5 default
parent child Browse files
Show More
@@ -1,31 +1,31 b''
1 try:
1 try:
2 from setuptools import setup, find_packages
2 from setuptools import setup, find_packages
3 except ImportError:
3 except ImportError:
4 from ez_setup import use_setuptools
4 from ez_setup import use_setuptools
5 use_setuptools()
5 use_setuptools()
6 from setuptools import setup, find_packages
6 from setuptools import setup, find_packages
7
7
8 setup(
8 setup(
9 name = "mercurial_keyring",
9 name = "mercurial_keyring",
10 version = '0.3.1',
10 version = '0.3.1',
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 = 'http://mekk.waw.pl',
13 url = 'http://mekk.waw.pl',
14 description = 'Mercurial Keyring Extension',
14 description = 'Mercurial Keyring Extension',
15 long_description = '''mercurial_keyring preserves passwords via keyring (http://pypi.python.org/pypi/keyring) library, using OSX/Keychain, KDE KWallet, Gnome Keyring, or internally supported storage (also on Win32).''',
15 long_description = '''mercurial_keyring preserves passwords via keyring (http://pypi.python.org/pypi/keyring) library, using OSX/Keychain, KDE KWallet, Gnome Keyring, or internally supported storage (also on Win32). See http://mercurial.selenic.com/wiki/KeyringExtension for more info and http://bitbucket.org/Mekk/mercurial_keyring/ for source repository.''',
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 :: OSI Approved :: BSD License',
23 'License :: OSI Approved :: BSD License',
24 'Operating System :: OS Independent',
24 'Operating System :: OS Independent',
25 'Topic :: Software Development :: Libraries',
25 'Topic :: Software Development :: Libraries',
26 'Topic :: Software Development :: Libraries :: Python Modules',
26 'Topic :: Software Development :: Libraries :: Python Modules',
27 'Topic :: Software Development :: Version Control'
27 'Topic :: Software Development :: Version Control'
28 ],
28 ],
29 install_requires = ['keyring'],
29 install_requires = ['keyring'],
30 zip_safe = True,
30 zip_safe = True,
31 )
31 )
General Comments 0
You need to be logged in to leave comments. Login now