grim/hgkeeper-theme

Parents d8b4dd8a410c
Children d10c931f39d1
Add a setup.py that'll install us into the mercurial templates directory
  • +36 -0
    setup.py
  • --- /dev/null Thu Jan 01 00:00:00 1970 +0000
    +++ b/setup.py Tue May 05 00:13:35 2020 -0500
    @@ -0,0 +1,36 @@
    +from setuptools import setup
    +
    +
    +setup(
    + name='hgkeeper-theme',
    + version='0.1.0',
    + author='Gary Kramlich',
    + author_email='grim@reaperworld.com',
    + url='https://keep.imfreedom.org/grim/hgkeeper-theme',
    + description='The default hgkeeper theme for hgweb',
    + packages=['mercurial.templates'],
    + package_dir={
    + 'mercurial.templates': 'templates',
    + },
    + package_data={
    + 'mercurial.templates': [
    + 'hgkeeper/*',
    + 'hgkeeper/*/*',
    + 'static/hgk/*/*',
    + ]
    + },
    + install_requires=[
    + 'hgwebplus>=0.4.0',
    + # 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',
    + ],
    +)