Fixing test and release nits.

This commit is contained in:
William Pietri
2017-12-10 17:54:54 -08:00
parent f2690e0777
commit 2192d4f958
3 changed files with 8 additions and 6 deletions
+1 -2
View File
@@ -4,7 +4,6 @@ python:
- "3.5"
- "3.6"
install:
- pip install pipenv
- pipenv install -d --system
- pip install -e .
script: nosetests
+1 -2
View File
@@ -11,8 +11,7 @@ install:
# We need wheel installed to build wheels
- "SET PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%"
- python --version
- pip install pipenv
- pipenv install -d --system
- pip install -e .
build: off
+5 -1
View File
@@ -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 = ''
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',