-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
42 lines (41 loc) · 1.08 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
from setuptools import setup, find_packages
setup(
name="snp2cell",
version="0.2.0",
description="A package for finding enriched regulatory networks from GWAS and single cell data",
url="https://github.com/JPatrickPett/snp2cell",
author="J.P.Pett",
author_email="[email protected]",
license="BSD 3-clause",
packages=find_packages(),
entry_points={
"console_scripts": ["snp2cell=snp2cell.cli:app"],
},
install_requires=[
"numpy",
"scipy",
"pandas",
"scanpy",
"networkx",
"pyranges",
"pybiomart",
"statsmodels",
"joblib",
"tqdm",
"matplotlib",
"seaborn",
"typer",
"typing_extensions",
"rich",
"dill",
"pytest",
],
python_requires=">=3.5, <3.12",
classifiers=[
"Development Status :: 1 - Planning",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
],
)