Fixing test and release nits.
This commit is contained in:
@@ -6,8 +6,12 @@ from setuptools import setup, find_packages
|
||||
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()
|
||||
long_description = ''
|
||||
try:
|
||||
with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
|
||||
long_description = f.read()
|
||||
except FileNotFoundError:
|
||||
print("can't find python README; skipping")
|
||||
|
||||
setup(
|
||||
name='sucks',
|
||||
|
||||
Reference in New Issue
Block a user