Select Git revision
version.php
-
Alexander Bias authoredAlexander Bias authored
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',
],
)