view setup.py @ 25:b44a37554abb

author-email
author Marcin Kasperski <Marcin.Kasperski@mekk.waw.pl>
date Sun, 15 Nov 2015 10:27:01 +0100
parents 4224f8df57d6
children b4af8f4c6136
line wrap: on
line source


VERSION = '0.6.1'

#pylint:disable=missing-docstring,unused-import,import-error

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_all_paths",
    version=VERSION,
    author='Marcin Kasperski',
    author_email='Marcin.Kasperski@mekk.waw.pl',
    url='http://bitbucket.org/Mekk/mercurial-all_paths',
    description='Mercurial allpaths extension',
    long_description=LONG_DESCRIPTION,
    license='GNU',
    py_modules=['mercurial_all_paths'],
    keywords="mercurial paths multi extension",
    classifiers=[
        'Development Status :: 4 - Beta',
        'Environment :: Console',
        'Intended Audience :: Developers',
        'License :: DFSG approved',
        'License :: OSI Approved :: GNU',
        'Operating System :: OS Independent',
        'Topic :: Software Development :: Version Control'
        #'Topic :: Software Development :: Version Control :: Mercurial',
    ],
    zip_safe=True)