##// END OF EJS Templates
Added tag 0.3.3 for changeset 8224c263d919
Added tag 0.3.3 for changeset 8224c263d919

File last commit:

r38:b46cf927 0.3.2 default
r41:a7e2e964 default
Show More
setup.py
35 lines | 1.0 KiB | text/x-python | PythonLexer
version = '0.3.2'
try:
from setuptools import setup, find_packages
except ImportError:
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages
long_description = open("README.txt").read()
setup(
name = "mercurial_keyring",
version = version,
author = 'Marcin Kasperski',
author_email = 'Marcin.Kasperski@mekk.waw.pl',
url = 'http://bitbucket.org/Mekk/mercurial_keyring',
description = 'Mercurial Keyring Extension',
long_description = long_description,
license = 'GPL',
py_modules = ['mercurial_keyring'],
keywords = "mercurial hg keyring password",
classifiers = [
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Software Development :: Version Control'
],
install_requires = ['keyring'],
zip_safe = True,
)