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