-
Notifications
You must be signed in to change notification settings - Fork 26
/
setup.cfg
43 lines (38 loc) · 906 Bytes
/
setup.cfg
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
[metadata]
name = move-dl
description = Multi-omics variational autoencoder
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/RasmussenLab/MOVE
classifiers =
Intended Audience :: Healthcare Industry
Intended Audience :: Science/Research
License :: OSI Approved :: MIT License
Programming Language :: Python :: 3
Topic :: Scientific/Engineering :: Bio-Informatics
license_files = LICENSE
version = attr: move.__version__
[options]
include_package_data = True
install_requires =
hydra-core
numpy<2
pandas
torch
matplotlib
seaborn
scikit-learn
scipy>=1.10.0
package_dir =
= src
packages = find:
python_requires = >=3.9
[options.packages.find]
where = src
[options.entry_points]
console_scripts =
move-dl=move.__main__:main
[flake8]
max-line-length = 88
aggressive = 2
extend-ignore = E203