Data: Tabular Time Series Specialty: Endocrinology Laboratory: Blood Tests EHR: Demographics Diagnoses Medications Omics: Genomics Multi-omics Transcriptomics Wearable: Activity Clinical Purpose: Treatment Response Assessment Task: Biomarker Discovery
Diff of /setup.cfg [000000] .. [c23b31]

Switch to unified view

a b/setup.cfg
1
[metadata]
2
name = move-dl
3
description = Multi-omics variational autoencoder
4
long_description = file: README.md
5
long_description_content_type = text/markdown
6
url = https://github.com/RasmussenLab/MOVE
7
classifiers =
8
    Intended Audience :: Healthcare Industry
9
    Intended Audience :: Science/Research
10
    License :: OSI Approved :: MIT License
11
    Programming Language :: Python :: 3
12
    Topic :: Scientific/Engineering :: Bio-Informatics
13
license_files = LICENSE
14
version = attr: move.__version__
15
16
[options]
17
include_package_data = True
18
install_requires =
19
    hydra-core
20
    numpy<2
21
    pandas
22
    torch
23
    matplotlib
24
    seaborn
25
    scikit-learn
26
    scipy>=1.10.0
27
28
package_dir =
29
    = src
30
packages = find:
31
python_requires = >=3.9
32
33
[options.packages.find]
34
where = src
35
36
[options.entry_points]
37
console_scripts =
38
    move-dl=move.__main__:main
39
40
[flake8]
41
max-line-length = 88
42
aggressive = 2
43
extend-ignore = E203