Skip to content

Commit

Permalink
Added long_description parameter to python setup.
Browse files Browse the repository at this point in the history
  • Loading branch information
yellowcap committed Apr 26, 2018
1 parent 4c2c3b8 commit 26df682
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,23 @@
from codecs import open
from os import path

from setuptools import find_packages, setup

here = path.abspath(path.dirname(__file__))

# Get the long description from the README file
with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
long_description = f.read()

setup(
name='django-raster',
version='0.6',
url='https://github.com/geodesign/django-raster',
author='Daniel Wiesmann',
author_email='[email protected]',
description='Raster file implementation for Django based on PostGis',
long_description=long_description,
long_description_content_type='text/x-rst',
license='BSD',
packages=find_packages(exclude=('tests', )),
include_package_data=True,
Expand Down

0 comments on commit 26df682

Please sign in to comment.