Added entry point to run cellxgene from console

This commit is contained in:
Charlotte Weaver
2018-07-10 12:56:42 -07:00
parent a3bf802aec
commit f466ef6553
7 changed files with 75 additions and 64 deletions
+4 -1
View File
@@ -16,7 +16,6 @@ setup(
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,
@@ -24,4 +23,8 @@ setup(
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
),
entry_points={
'console_scripts':
['cellxgene = server.app.app:main']
}
)