-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (28 loc) · 1022 Bytes
/
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
# -- import packages: ----------------------------------------------------------
import setuptools
import re
import os
import sys
# -- run setup: ----------------------------------------------------------------
with open('requirements.txt') as f:
requirements = f.read().splitlines()
setuptools.setup(
name="adata_query",
version="0.0.2",
python_requires=">3.9.0",
author="Michael E. Vinyard",
author_email="[email protected]",
url="https://github.com/mvinyard/AnnDataQuery",
long_description=open("README.md", encoding="utf-8").read(),
long_description_content_type="text/markdown",
description="Fetch and format data matrices from AnnData.",
packages=setuptools.find_packages(),
install_requires=requirements,
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Programming Language :: Python :: 3.9",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Bio-Informatics",
],
license="MIT",
)