Files
cellxgene/setup.py
Jeremy Freeman 0c8a07ac13 CLI refactor (#396)
* refactor cli to improve ux and enable easy incorporation of prepare as a subcommand

* switches to use click, which removes some boilerplate and gets us some improved ux for free

* changes the entry point for the cli

* changes the name of the browser option to --open and makes the default false
2018-11-02 10:52:50 -04:00

31 lines
880 B
Python

from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
with open("server/requirements.txt") as fh:
requirements = fh.read().splitlines()
setup(
name="cellxgene",
version="0.0.1",
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,
install_requires=requirements,
include_package_data=True,
zip_safe=False,
classifiers=(
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
),
entry_points={
"console_scripts":
["cellxgene = server.cli.cli:cli"]
}
)