Newer
Older
from setuptools import find_packages, setup
# allow setup.py to be run from any path
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
setup(
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,
# ⚠️ 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
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',
],
)