-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
32 lines (30 loc) · 1.56 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
29
30
31
32
from setuptools import setup, find_packages, find_namespace_packages
with open("README.rst", "r") as fh:
long_description = fh.read()
setup(
name='brooklyn_plot',
version='0.0.4',
author='Arun Patil, Matthew McCall and Marc Halushka',
author_email='[email protected]',
url='https://github.com/arunhpatil/brooklyn/',
description='Gene co-expression and transcriptional bursting pattern recognition tool in single cell/nucleus RNA-sequencing data',
long_description=long_description,
keywords=['brooklyn', 'single cell', 'single nucleus', 'single cell-RNA', 'single nucleus-RNA', 'RNA analysis', 'cellxgene', 'RNA-seq', 'bioinformatics tools', 'co-expression', 'transcriptional bursting', 'sc-RNAseq', 'sn-RNAseq'], # arbitrary keywords
license='MIT',
package_dir={'brooklyn_plot': 'brooklyn_plot'},
packages=find_packages(),
package_data = {'':['rScripts/*.R', 'libs/*.py']},
install_requires=['scanpy','pandas','numpy','scipy','rpy2'],
entry_points={'console_scripts': ['brooklyn_plot = brooklyn_plot.__main__:main']},
classifiers=[
"Development Status :: 1 - Planning",
"Environment :: Console",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3.8",
"Topic :: Scientific/Engineering :: Bio-Informatics"
],
include_package_data=True,
python_requires='>=3.7',
)