-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
executable file
·60 lines (55 loc) · 1.63 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
import versioneer
from setuptools import setup, find_packages
import os
DESCRIPTION = (
"Inference of transcription factor motif activity from single cell RNA-seq data."
)
with open("README.md") as f:
long_description = f.read()
entry_points = {"console_scripts": ["scepia=scepia.cli:cli"]}
setup(
name="scepia",
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
long_description=long_description,
long_description_content_type="text/markdown",
description=DESCRIPTION,
author="Simon van Heeringen",
author_email="simon.vanheeringen@gmail.com",
url="https://github.com/vanheeringen-lab/scepia/",
license="MIT",
packages=find_packages(),
entry_points=entry_points,
include_package_data=True,
zip_safe=False,
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Bio-Informatics",
],
install_requires=[
"adjustText",
"biofluff >=3.0.4",
"geosketch",
"gimmemotifs >=0.15.2",
"leidenalg",
"loguru",
"matplotlib",
"numba",
"numpy",
"pandas",
"scanpy",
"scikit-learn",
"scipy",
"seaborn",
"tqdm",
"xdg",
],
)