Skip to content

Commit

Permalink
removing PyPI link to README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
virginiayung committed Aug 5, 2016
1 parent 687813d commit 5975116
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 6 deletions.
2 changes: 0 additions & 2 deletions setup.cfg

This file was deleted.

20 changes: 16 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,22 @@
from codecs import open as codecs_open
import os
import sys
from setuptools import setup, find_packages
from setuptools.extension import Extension

# Parse the version from the fiona module.
with open('rio_toa/__init__.py') as f:
for line in f:
if line.find("__version__") >= 0:
version = line.split("=")[1].strip()
version = version.strip('"')
version = version.strip("'")
break

# Get the long description from the relevant file
with codecs_open('README.md', encoding='utf-8') as f:
long_description = f.read()
long_description = """"""


def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()


setup(name='rio-pansharpen',
Expand Down

0 comments on commit 5975116

Please sign in to comment.