We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4c2c3b8 commit 26df682Copy full SHA for 26df682
setup.py
@@ -1,12 +1,23 @@
1
+from codecs import open
2
+from os import path
3
+
4
from setuptools import find_packages, setup
5
6
+here = path.abspath(path.dirname(__file__))
7
8
+# Get the long description from the README file
9
+with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
10
+ long_description = f.read()
11
12
setup(
13
name='django-raster',
14
version='0.6',
15
url='https://github.com/geodesign/django-raster',
16
author='Daniel Wiesmann',
17
author_email='[email protected]',
18
description='Raster file implementation for Django based on PostGis',
19
+ long_description=long_description,
20
+ long_description_content_type='text/x-rst',
21
license='BSD',
22
packages=find_packages(exclude=('tests', )),
23
include_package_data=True,
0 commit comments