Refactor czi_hosted and server into backend directory, pull common code into backend/common, refactor tests (#2102)

* move local_server -> backend/server server-> backend/czi_hosted, pull common code into backend/common update imports, tests and make commands
This commit is contained in:
Madison Dunitz
2021-03-26 00:27:07 -05:00
committed by GitHub
parent e6e358ddc8
commit 78c9d24ed4
425 changed files with 734 additions and 5317 deletions
+3 -3
View File
@@ -3,10 +3,10 @@ from setuptools import setup, find_packages
with open("README.md", "rb") as fh:
long_description = fh.read().decode()
with open("local_server/requirements.txt") as fh:
with open("backend/server/requirements.txt") as fh:
requirements = fh.read().splitlines()
with open("local_server/requirements-prepare.txt") as fh:
with open("backend/server/requirements-prepare.txt") as fh:
requirements_prepare = fh.read().splitlines()
setup(
@@ -38,6 +38,6 @@ setup(
"Programming Language :: Python :: 3 :: Only",
"Topic :: Scientific/Engineering :: Bio-Informatics",
],
entry_points={"console_scripts": ["cellxgene = local_server.cli.cli:cli"]},
entry_points={"console_scripts": ["cellxgene = backend.server.cli.cli:cli"]},
extras_require=dict(prepare=requirements_prepare),
)