Skip to content
Snippets Groups Projects
Select Git revision
  • e659147570abad8fa9e6faf91310b5b2948acc17
  • master default protected
  • version2
  • update_bulma_fontawesome
  • privacy_notification
  • specify_target_asset_app
  • v2.2.24
  • v2.3.0
  • v2.2.23
  • v2.2.22
  • v2.2.21
  • v2.2.20
  • v2.2.19
  • v2.2.18
  • v2.2.17
  • v2.2.16
  • v2.2.15
  • v2.2.14
  • v2.2.13
  • v2.2.12
  • v2.2.11
  • v2.2.10
  • v2.2.9
  • v2.2.8
  • v2.2.7
  • v2.2.6
26 results

setup.py

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',
        ],
    )