Repository URL to install this package:
|
Version:
1.0.0 ▾
|
django-pipeline-forgiving
/
setup.py
|
|---|
#!/usr/bin/env python
from os.path import exists
from setuptools import setup, find_packages
from django_pipeline_forgiving import __version__
setup(
name='django-pipeline-forgiving',
version=__version__,
# Your name & email here
author='Adam Charnock',
author_email='adam@adamcharnock.com',
# If you had django_pipeline_forgiving.tests, you would also include that in this list
packages=find_packages(),
# Any executable scripts, typically in 'bin'. E.g 'bin/do-something.py'
scripts=[],
# REQUIRED: Your project's URL
url='https://github.com/adamcharnock/django-pipeline-forgiving',
# Put your license here. See LICENSE.txt for more information
license='MIT',
# Put a nice one-liner description here
description='An extension of the django-pipeline storage backend which forgives missing files',
long_description=open('README.rst').read() if exists("README.rst") else "",
# Any requirements here, e.g. "Django >= 1.1.1"
install_requires=[
'django-pipeline'
],
)