Skip to content
Snippets Groups Projects
Select Git revision
  • c0287fc8626851d8c06eeaf33c83cca525cf223c
  • master default protected
  • more_logging
  • MDL-58395
  • accountexpires
  • hsh_3.10
  • v3.10-r1
  • v3.9-r2
  • v3.9-r1
  • v3.8-r1
  • v3.7-r1
  • v3.6-r1
  • v3.5-r2
  • v3.5-r1
  • v3.4-r4
  • v3.4-r3
  • v3.4-r2
  • v3.4-r1
  • v3.3-r1
  • v3.2-r4
  • v3.2-r3
  • v3.2-r2
  • v3.2-r1
  • v3.1-r1
  • v3.0-r3
  • v3.0-r2
26 results

version.php

Blame
  • setup.py 1.16 KiB
    from setuptools import setup, find_packages
    
    import os
    
    # allow setup.py to be run from any path
    os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
    
    setup(
        name='django-hshassets',
        version='2.0.0',
        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,
        install_requires=[
            'libsass==0.17.0',
            'jsmin==2.2.2',
            'watchdog==0.9.0'
        ],
        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',
        ],
    )