forked from owkin/PyDESeq2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
48 lines (41 loc) · 1.29 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
"""Packaging settings."""
import os
from codecs import open
from setuptools import find_packages
from setuptools import setup
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, "README.md"), "r", "utf-8") as fp:
readme = fp.read()
about: dict = {}
with open(os.path.join(here, "pydeseq2", "__version__.py"), "r", "utf-8") as fp:
exec(fp.read(), about)
setup(
name="pydeseq2",
version=about["__version__"],
python_requires=">=3.9.0",
license="MIT",
description="A python implementation of DESeq2.",
long_description=readme,
long_description_content_type="text/markdown",
author="Boris Muzellec, Maria Telenczuk, Vincent Cabelli and Mathieu Andreux",
author_email="boris.muzellec@owkin.com",
packages=find_packages(exclude=["tests*"]),
install_requires=[
"anndata>=0.8.0",
"numpy>=1.23.0",
"pandas>=1.4.0",
"scikit-learn>=1.1.0",
"scipy>=1.11.0",
"matplotlib>=3.6.2", # not sure why sphinx_gallery does not work without it
], # external packages as dependencies
extras_require={
"dev": [
"pytest>=6.2.4",
"pre-commit>=2.13.0",
"numpydoc",
"coverage",
"mypy",
"pandas-stubs",
],
},
)