# HG changeset patch # User Marcin Kasperski # Date 2009-11-19 23:41:40 # Node ID 5de079499340c93bdd115dcb78c8f1e4316b18e3 # Parent 669009c3672c1257ee7b4299a521b4a50897a00a preliminary setup.py diff --git a/setup.py b/setup.py new file mode 100644 --- /dev/null +++ b/setup.py @@ -0,0 +1,32 @@ +try: + from setuptools import setup, find_packages +except ImportError: + from ez_setup import use_setuptools + use_setuptools() + from setuptools import setup, find_packages + +setup( + name = "mercurial_keyring", + version = '0.1.0', + author = 'Marcin Kasperski', + author_email = 'Marcin.Kasperski@mekk.waw.pl', + url = 'http://mekk.waw.pl', + description = 'Mercurial Keyring Extension', + 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).''', + license = 'BSD', + py_modules = ['mercurial_keyring'], + keywords = "mercurial hg keyring password", + classifiers = [ + 'Development Status :: 4 - Beta', + 'Environment :: Any', + 'Intended Audience :: Developers', + 'License :: OSI Approved :: BSD License', + 'Operating System :: Any', + 'Topic :: Software Development :: Libraries', + 'Topic :: Software Development :: Libraries :: Python Modules', + 'Topic :: Software Development :: Version Control' + ], + + install_requires = ['keyring'], + zip_safe = True, + )