Skip to content

Commit

Permalink
Merge 6819902 into 0322986
Browse files Browse the repository at this point in the history
  • Loading branch information
carsongee committed Aug 13, 2015
2 parents 0322986 + 6819902 commit 99e5e4d
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,18 +1,22 @@
import codecs
from setuptools import setup

try:
import multiprocessing
except ImportError:
pass

with codecs.open('README.rst', encoding='utf-8') as readme:
long_description = readme.read()

setup(
name="django-settings-export",
version='1.0.5',
author="Jakub Roztocil",
author_email="jakub@roztocil.co",
description='This Django app allows you to export'
' certain settings to your templates.',
long_description=open('README.rst').read().strip(),
long_description=long_description,
license='BSD',
url='https://github.com/jkbrzt/django-settings-export',
classifiers=[
Expand Down

0 comments on commit 99e5e4d

Please sign in to comment.