forked from LeoAnd00/CELLULAR
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (27 loc) · 1.06 KB
/
setup.py
File metadata and controls
30 lines (27 loc) · 1.06 KB
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
from pathlib import Path
import sys
from setuptools import setup, find_packages
with open("README.md", "r") as f:
description = f.read()
install_requires=[
l.strip() for l in Path('requirements.txt').read_text('utf-8').splitlines()
if l.strip() and not l.startswith("--") # Ignore empty lines and options like --extra-index-url
]
setup(
name="CELLULAR_CL",
version="0.0.4",
author="Leo Andrekson, Rocío Mercado",
author_email="leo.andrekson@gmail.com, rocom@chalmers.se",
description="A package for generating an embedding space from scRNA-Seq. This space can be used for cell type annotation, novel cell type detection, cell type representations, and visualization.",
long_description=description,
long_description_content_type="text/markdown",
url="https://github.com/LeoAnd00/CELLULAR",
license="MIT",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
],
python_requires=">=3.10.5",
packages=find_packages(),
install_requires=install_requires,
)