Skip to content
Snippets Groups Projects
setup.py 1.31 KiB
Newer Older
  • Learn to ignore specific revisions
  • Tim Fechner's avatar
    Tim Fechner committed
    import os
    
    
    from setuptools import find_packages, setup
    
    
    Tim Fechner's avatar
    Tim Fechner committed
    # allow setup.py to be run from any path
    os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
    
    setup(
    
    Tim Fechner's avatar
    Tim Fechner committed
        name='django-hshassets',
    
    Elke Kreim's avatar
    Elke Kreim committed
        version='2.2.24',
    
    Tim Fechner's avatar
    Tim Fechner committed
        packages=find_packages(),
        include_package_data=True,
        license='MIT License',
        description='Provides styles, fonts, javascript and templates',
        long_description='Please read the README.md file!',
        url='http://projects.it.hs-hannover.de/',
        author='Tim Fechner',
        author_email='tim.fechner@hs-hannover.de',
        zip_safe=False,
    
    Elke Kreim's avatar
    Elke Kreim committed
            # ⚠️ keep this empty because production servers don't compile sass or minimize js
            # ⚠️ so production setup doesn't have to suffer suffer from tons of optional heavyweight compiled binary dependencies
    
    Tim Fechner's avatar
    Tim Fechner committed
        classifiers=[
            'Environment :: Web Environment',
            'Framework :: Django',
            'Intended Audience :: Developers',
            'License :: OSI Approved :: MIT License',
            'Operating System :: OS Independent',
            'Programming Language :: Python',
            # Replace these appropriately if you are stuck on Python 2.
            'Programming Language :: Python :: 3.x',
            'Topic :: Internet :: WWW/HTTP',
            'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
        ],
    )