-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
28 lines (26 loc) · 1.1 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='cytocipher',
version='0.1.20',
description='Cluster significance analysis in scRNA-seq',
url='https://github.com/BradBalderson/Cytocipher',
author='Brad Balderson',
author_email='[email protected]',
license='GNU GENERAL PUBLIC LICENSE V3',
long_description_content_type="text/markdown",
long_description=long_description,
packages=find_packages(include=['cytocipher', 'cytocipher.score_and_merge',
'cytocipher.plotting', 'cytocipher.utils']),
install_requires=['scanpy>=1.9.1', 'numba==0.56.0','leidenalg>=0.8.10',
'seaborn==0.11.2'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: MacOS :: MacOS X',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3.8',
],
)