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 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
|
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import codecs
import os
from setuptools import setup, find_packages
def read(*parts):
filename = os.path.join(os.path.dirname(__file__), *parts)
with codecs.open(filename, encoding='utf-8') as fp:
return fp.read()
version_tuple = __import__('django_js_reverse').VERSION
version = '.'.join([str(v) for v in version_tuple])
setup(
name='django-js-reverse',
version=version,
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: Implementation :: PyPy',
'Framework :: Django',
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: MIT License',
],
license='MIT',
description='Javascript url handling for Django that doesn\'t hurt.',
long_description=read('README.rst'),
author='Bernhard Janetzki',
author_email='boerni@gmail.com',
url='https://github.com/ierror/django-js-reverse',
download_url='http://pypi.python.org/pypi/django-js-reverse/',
packages=find_packages(),
package_data={
'django_js_reverse': [
'templates/django_js_reverse/*',
]
},
install_requires=[
'Django>=1.5',
]
)
|