mirror of
https://github.com/chanzuckerberg/cellxgene.git
synced 2026-09-27 17:38:11 +08:00
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:
@@ -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),
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user