VERSION = '1.3.0' # pylint:disable=missing-docstring,unused-import,import-error from setuptools import setup, find_packages LONG_DESCRIPTION = open("README.txt").read() setup( name="mercurial_path_pattern", version=VERSION, author='Marcin Kasperski', author_email='Marcin.Kasperski@mekk.waw.pl', url='http://bitbucket.org/Mekk/mercurial-path_pattern', description='Mercurial Path Pattern Extension', long_description=LONG_DESCRIPTION, license='BSD', py_modules=[ 'mercurial_path_pattern', ], install_requires=[ 'mercurial_extension_utils>=1.2.0', ], keywords="mercurial hg path alias", classifiers=[ 'Development Status :: 5 - Production/Stable', 'Environment :: Console', 'Intended Audience :: Developers', 'License :: DFSG approved', 'License :: OSI Approved :: BSD License', 'Operating System :: OS Independent', 'Topic :: Software Development :: Version Control' # 'Topic :: Software Development :: Version Control :: Mercurial', ], zip_safe=True)