-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (32 loc) · 964 Bytes
/
setup.py
File metadata and controls
35 lines (32 loc) · 964 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
29
30
31
32
33
34
35
# Install with 'pip install -e .'
from setuptools import setup, find_packages
from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setup(
name="xomx",
version="0.1.16", # -version-
author="Nicolas Perrin-Gilbert",
description="xomx: a python library for computational omics",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/perrin-isir/xomx",
packages=find_packages(),
install_requires=[
"pandas>=1.3.0,<=2.1.0",
"numpy>=1.21.1",
"anndata>=0.7.6",
"scipy>=1.4.1",
"matplotlib>=3.1.3",
"scikit-learn>=0.24.2",
"joblib>=1.0.1",
"requests>=2.23.0",
"holoviews>=1.17.1",
"bokeh>=3.2.2",
"leidenalg>=0.8.8",
"jax>=0.3.23",
"optax>=0.1.2",
"flax>=0.6.3",
],
license="LICENSE",
)