-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (26 loc) · 724 Bytes
/
Copy pathsetup.py
File metadata and controls
28 lines (26 loc) · 724 Bytes
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
#!/usr/bin/env python3
"""Setup configuration for normalization_pipeline package."""
from setuptools import setup, find_packages
setup(
name="normalization_pipeline",
version="0.1.0",
description="Cross-species gene expression normalization benchmarking pipeline",
author="Your Name",
packages=find_packages(where="."),
package_dir={"": "."},
python_requires=">=3.8",
install_requires=[
"pandas>=1.3.0",
"numpy>=1.20.0",
"scipy>=1.7.0",
"scikit-bio>=0.5.6",
"matplotlib>=3.4.0",
"seaborn>=0.11.0",
"pydeseq2>=0.4.0"
],
entry_points={
"console_scripts": [
"normalize=bin.normalize:main",
],
},
)