Skip to content

Commit

Permalink
Update setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
jason-neal committed Aug 28, 2018
1 parent 09d98ab commit 3bb2a41
Showing 1 changed file with 2 additions and 7 deletions.
9 changes: 2 additions & 7 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,20 +11,15 @@

# Always prefer setuptools over distutils
from setuptools import setup, find_packages
# from setuptools.command.test import test as TestCommand
# To use a consistent encoding
import codecs
import os

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

# Get the long description from the README file
try:
import pypandoc
long_description = pypandoc.convert(os.path.join(here, 'README.md'), 'rst')
except:
with codecs.open(os.path.join(here, 'README.md')) as f:
long_description = f.read()
with codecs.open(os.path.join(here, 'README.md')) as f:
long_description = f.read()

about = {}
with codecs.open(os.path.join(here, "spectrum_overload", "__about__.py")) as f:
Expand Down

0 comments on commit 3bb2a41

Please sign in to comment.