build bug fixes (#438)

* Fixes compatibility conflict with numpy version and anndata version #434

* Forces description to be read as unicode

fixes #435
This commit is contained in:
Charlotte Weaver
2018-11-14 14:21:02 -08:00
committed by GitHub
parent 00a68276a2
commit 07cda497d9
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -1,7 +1,7 @@
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
with open("README.md", "rb") as fh:
long_description = fh.read().decode()
with open("server/requirements.txt") as fh:
requirements = fh.read().splitlines()