Skip to content
Snippets Groups Projects
Select Git revision
  • master
  • 2-optimise-query-count
  • 1.2.3
  • 1.2
  • 1.1.6
  • v1.1.5
  • v1.1.4
  • v1.1.1
  • v1.1.0
  • v1.0.2
  • v1.0.1
  • v1.0.0
  • v0.0.8
  • v0.0.7
  • v0.0.5
  • v0.0.4
  • v0.0.3
17 results

setup.py

Blame
  • setup.py 1.57 KiB
    import os
    import sys
    import codecs
    import favicon
    
    from distutils.core import setup
    from setuptools import setup, find_packages
    
    version = favicon.__version__
    
    setup(
        name='django-favicon-plus-reloaded',
        version=version,
        url='https://edugit.org/AlekSIS/libs/django-favicon-plus',
        packages=find_packages(),
        license='MIT',
        description='Simple Django app which allows you to upload a image and it renders a wide variety for html link tags to display the favicon',
        long_description=codecs.open('README.md', encoding='utf-8').read(),
        long_description_content_type='text/markdown',
        install_requires=open('requirements.txt').read().split('\n'),
        author='arteria GmbH',
        author_email='arteria@arteria.ch',
        maintainer='AlekSIS Team',
        maintainer_email='aleksis-dev@lists.teckids.org',
        include_package_data=True,
        classifiers=[
            'Development Status :: 5 - Production/Stable',
            'Environment :: Web Environment',
            'Framework :: Django',
            'Intended Audience :: Developers',
            'License :: OSI Approved :: MIT License',
            'Operating System :: OS Independent',
            'Programming Language :: Python',
            'Programming Language :: Python :: 3',
            'Programming Language :: Python :: 3.8',
            'Programming Language :: Python :: 3.9',
            'Programming Language :: Python :: 3.10',
            'Programming Language :: Python :: 3.11',
            'Programming Language :: Python :: 3.12',
            'Topic :: Internet :: WWW/HTTP',
            'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
        ],
        zip_safe=False
    )