Codebase list archmage / 27d304d7-3a70-4650-83b5-288c86b0f844/main setup.py
27d304d7-3a70-4650-83b5-288c86b0f844/main

Tree @27d304d7-3a70-4650-83b5-288c86b0f844/main (Download .tar.gz)

setup.py @27d304d7-3a70-4650-83b5-288c86b0f844/mainraw · history · blame

#!/usr/bin/env python

from setuptools import setup, find_packages

long_desc='''arCHMage is a reader and decompressor for CHM format'''

classifiers=[
    'Development Status :: 5 - Production/Stable',
    'Environment :: Console',
    'Environment :: Web Environment',
    'Intended Audience :: End Users/Desktop',
    'License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)',
    'Topic :: Text Processing :: Filters',
]

setup(
    name='archmage',
    version='0.4.0',
    description='CHM decompressor',
    maintainer='Mikhail Gusarov',
    maintainer_email='dottedmag@dottedmag.net',
    url='https://github.com/dottedmag/archmage',
    license='GPLv2+',
    keywords=['chm', 'HTML Help', 'Compiled HTML', 'Compressed HTML'],
    classifiers=classifiers,
    long_description=long_desc,
    packages=find_packages(),
    install_requires=[
        'pychm',
        'beautifulsoup4',
        'sgmllib3k',
    ],
    entry_points={
        'console_scripts': ['archmage = archmage.cli:main'],
    },
    package_data={
        'archmage': ['*.conf', 'templates/*.html', 'templates/*.css',
                    'templates/icons/*.gif'],
    }
)