Mercurial > hg-allpaths
view setup.py @ 6:b1d440f1027a
(internal) Changed the way in which extension options are separated:
pop own flags and pass-on the rest. This way in case push options
change, fix must be made in one place only. Also, dropped *args as
no non-named arguments can be given.
(internal) Make pylint happier
author | Marcin Kasperski <Marcin.Kasperski@mekk.waw.pl> |
---|---|
date | Sun, 08 Nov 2015 08:29:14 +0100 |
parents | 7591d4101b93 |
children | 8cca585b11cc |
line wrap: on
line source
VERSION = '0.3.0' #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='Ludovic Chabant', # url='http://bitbucket.org/Mekk/mercurial-all_paths', url='http://bitbucket.org/ludovicchabant/allpaths', description='Mercurial allpaths extension', long_description=LONG_DESCRIPTION, license='BSD', py_modules=['allpaths'], 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)