##// END OF EJS Templates
preliminary setup.py
Marcin Kasperski -
r12:5de07949 default
parent child Browse files
Show More
@@ -0,0 +1,32 b''
1 try:
2 from setuptools import setup, find_packages
3 except ImportError:
4 from ez_setup import use_setuptools
5 use_setuptools()
6 from setuptools import setup, find_packages
7
8 setup(
9 name = "mercurial_keyring",
10 version = '0.1.0',
11 author = 'Marcin Kasperski',
12 author_email = 'Marcin.Kasperski@mekk.waw.pl',
13 url = 'http://mekk.waw.pl',
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).''',
16 license = 'BSD',
17 py_modules = ['mercurial_keyring'],
18 keywords = "mercurial hg keyring password",
19 classifiers = [
20 'Development Status :: 4 - Beta',
21 'Environment :: Any',
22 'Intended Audience :: Developers',
23 'License :: OSI Approved :: BSD License',
24 'Operating System :: Any',
25 'Topic :: Software Development :: Libraries',
26 'Topic :: Software Development :: Libraries :: Python Modules',
27 'Topic :: Software Development :: Version Control'
28 ],
29
30 install_requires = ['keyring'],
31 zip_safe = True,
32 )
General Comments 0
You need to be logged in to leave comments. Login now