grim/hgwebplus

Parents 1f533b2b804e
Children e6b801778490
make flake8 happy about setup.py and add a note about not depending on mercurial
  • +17 -13
    setup.py
  • --- a/setup.py Fri Apr 10 18:43:17 2020 -0500
    +++ b/setup.py Fri Apr 10 18:49:59 2020 -0500
    @@ -1,23 +1,27 @@
    -#!/usr/bin/env python3
    +from setuptools import setup
    -from setuptools import setup
    setup(
    - name = 'hgwebplus',
    - version = '0.1.0',
    - author = 'Gary Kramlich',
    - author_email = 'grim@reaperworld.com',
    - url = 'https://keep.imfreedom.org/grim/hgwebplus',
    - description = 'Mercurial plugin to add additional functionality to hgweb',
    - package_dir = {'hgext3rd': 'src'},
    - packages = ['hgext3rd'],
    - license = 'GPLv2',
    - classifiers = [
    + name='hgwebplus',
    + version='0.1.0',
    + author='Gary Kramlich',
    + author_email='grim@reaperworld.com',
    + url='https://keep.imfreedom.org/grim/hgwebplus',
    + description='Mercurial plugin to add additional functionality to hgweb',
    + package_dir={'hgext3rd': 'src'},
    + packages=['hgext3rd'],
    + install_requires=[
    + 'cmarkgfm',
    + # skip mercurial because it might be installed on the system
    + # 'mercurial',
    + ],
    + license='GPLv2',
    + classifiers=[
    'Environment :: Plugins',
    'Intended Audience :: Developers',
    'Operating System :: OS Independent',
    'Programming Language :: Python',
    'License :: OSI Approved :: GNU General Public License v2 (GPLv2)',
    'Topic :: Software Development :: Version Control',
    - ]
    + ],
    )