forked from Katerina10-cloud/DeConveil
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
40 lines (37 loc) · 1.02 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
from setuptools import setup
from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setup(
name="DeConveil",
version="0.1.0",
description="An extension of PyDESeq2/DESeq2 designed to account for genome aneuploidy",
url="https://github.com/caravagnalab/DeConveil",
author="Katsiaryna Davydzenka",
author_email="[email protected]",
license="MIT",
packages=["deconveil"],
python_requires=">=3.10.0",
install_requires=[
"anndata>=0.8.0",
"formulaic>=1.0.2",
"numpy>=1.23.0",
"pandas>=1.4.0",
"scikit-learn>=1.1.0",
"scipy>=1.11.0",
"formulaic-contrasts>=0.2.0",
"matplotlib>=3.6.2",
"seaborn>=0.12.2",
"pydeseq2>=0.4.12",
],
extras_require={
"dev": [
"pytest>=6.2.4",
"pre-commit>=2.13.0",
"numpydoc",
"coverage",
"mypy",
"pandas-stubs",
]
},
)