-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added long_description parameter to python setup.
- Loading branch information
Showing
1 changed file
with
11 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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, | ||
|