-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
36 lines (34 loc) · 1.04 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
33
34
35
36
from setuptools import setup
import re
import os
import sys
setup(
name="ArchR_h5ad",
version="0.0.12",
python_requires=">3.6.0",
author="Michael E. Vinyard - Harvard University - Massachussetts General Hospital - Broad Institute of MIT and Harvard",
author_email="[email protected]",
url="",
long_description=open("README.md", encoding="utf-8").read(),
long_description_content_type="text/markdown",
description="ArchR_h5ad: Read .arrow files (from ArchR) to anndata.",
packages=[
"ArchR_h5ad",
"ArchR_h5ad._compose_adata",
"ArchR_h5ad._main",
"ArchR_h5ad._parse_arrow",
"ArchR_h5ad._utility_functions",
],
install_requires=[
"anndata>=0.7.8",
"licorice_font>=0.0.3",
"tqdm>=4.64.0",
],
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Programming Language :: Python :: 3.6",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Bio-Informatics",
],
license="MIT",
)