-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.py
26 lines (24 loc) · 892 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
from setuptools import setup
with open('README.rst') as file:
long_description = file.read()
setup(
name='django-compressor-requirejs',
version='0.4',
url='http://github.com/bpeschier/django-compressor-requirejs',
author="Bas Peschier",
author_email="bpeschier@fizzgig.nl",
packages=['requirejs', ],
license='MIT',
long_description=long_description,
description="Compress requirejs-modules into bundles.",
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Topic :: Software Development :: Libraries :: Python Modules',
],
install_requires=['Django>=1.6', 'django_compressor>=1.4'],
)