mirror of
https://github.com/chanzuckerberg/cellxgene.git
synced 2026-09-16 05:07:55 +08:00
This splits the backend into two parts: the local backend for desktop cellxgene and the AWS backend for hosted cellxgene. The local backend is in local_server while the hosted remains in server. The general idea is to copy everything from server to local_server, pull unneeded stuff out of local_server, and keep server as-is for this PR. Not touching server means all the infra and deployment code will continue working just as it did before so we can make those changes incrementally.
44 lines
1.6 KiB
Python
44 lines
1.6 KiB
Python
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:
|
|
requirements = fh.read().splitlines()
|
|
|
|
with open("local_server/requirements-prepare.txt") as fh:
|
|
requirements_prepare = fh.read().splitlines()
|
|
|
|
setup(
|
|
name="cellxgene",
|
|
version="0.16.0",
|
|
packages=find_packages(),
|
|
url="https://github.com/chanzuckerberg/cellxgene",
|
|
license="MIT",
|
|
author="Chan Zuckerberg Initiative",
|
|
author_email="cellxgene@chanzuckerberg.com",
|
|
description="Web application for exploration of large scale scRNA-seq datasets",
|
|
long_description=long_description,
|
|
long_description_content_type="text/markdown",
|
|
install_requires=requirements,
|
|
include_package_data=True,
|
|
zip_safe=False,
|
|
classifiers=[
|
|
"Framework :: Flask",
|
|
"Intended Audience :: Science/Research",
|
|
"License :: OSI Approved :: MIT License",
|
|
"Natural Language :: English",
|
|
"Operating System :: POSIX",
|
|
"Operating System :: Unix",
|
|
"Operating System :: MacOS :: MacOS X",
|
|
"Programming Language :: JavaScript",
|
|
"Programming Language :: Python :: 3",
|
|
"Programming Language :: Python :: 3.6",
|
|
"Programming Language :: Python :: 3.7",
|
|
"Programming Language :: Python :: 3 :: Only",
|
|
"Topic :: Scientific/Engineering :: Bio-Informatics",
|
|
],
|
|
entry_points={"console_scripts": ["cellxgene = local_server.cli.cli:cli"]},
|
|
extras_require=dict(prepare=requirements_prepare),
|
|
)
|