move common code into server, update tests and makefile (#2425)

* move common code into server, update tests and makefile

remove backend directory, refactor

update smoke tests
This commit is contained in:
Madison Dunitz
2021-09-20 18:50:06 -07:00
committed by GitHub
parent 97caa5bcaa
commit 3ebbb0ccbf
217 changed files with 277 additions and 292 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("backend/server/requirements.txt") as fh:
with open("server/requirements.txt") as fh:
requirements = fh.read().splitlines()
with open("backend/server/requirements-prepare.txt") as fh:
with open("server/requirements-prepare.txt") as fh:
requirements_prepare = fh.read().splitlines()
setup(
@@ -39,6 +39,6 @@ setup(
"Programming Language :: Python :: 3 :: Only",
"Topic :: Scientific/Engineering :: Bio-Informatics",
],
entry_points={"console_scripts": ["cellxgene = backend.server.cli.cli:cli"]},
entry_points={"console_scripts": ["cellxgene = server.cli.cli:cli"]},
extras_require=dict(prepare=requirements_prepare),
)