mirror of
https://github.com/chanzuckerberg/cellxgene.git
synced 2026-09-17 22:08:00 +08:00
* add default config * first pass * flake8 * cleanup * first pass at using qthreads * cleanup * WIP * better error handling * improved UI * bugfix * fix merge bugs * import order * cleanup * make gui requirements optional * pr review requested changes * Update server/gui/main.py Co-Authored-By: csweaver <charlottesweaver@gmail.com> * pr review request * qt child class methods -> camelCase * whitespace
41 lines
1.5 KiB
Python
41 lines
1.5 KiB
Python
from setuptools import setup, find_packages
|
|
|
|
with open("README.md", "rb") as fh:
|
|
long_description = fh.read().decode()
|
|
|
|
with open("server/requirements.txt") as fh:
|
|
requirements = fh.read().splitlines()
|
|
|
|
setup(
|
|
name="cellxgene",
|
|
version="0.8.0",
|
|
packages=find_packages(),
|
|
url="https://github.com/chanzuckerberg/cellxgene",
|
|
license="MIT",
|
|
author="Colin Megill, Charlotte Weaver",
|
|
author_email="cweaver@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 = server.cli.cli:cli"]},
|
|
extras_require=dict(louvain=["python-igraph", "louvain>=0.6"], gui=["PyQt5>=5.12.1", "cefpython3>=66"]),
|
|
)
|