Files
cellxgene/setup.py
Charlotte Weaver 0639759a90 Initial packaging working
pip install works if client files are built and moved manually
2018-07-06 15:44:22 -07:00

28 lines
832 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,
long_description_content_type="text/markdown",
install_requires=requirements,
include_package_data=True,
zip_safe=False,
classifiers=(
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
),
)