--- a +++ b/setup.cfg @@ -0,0 +1,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 \ No newline at end of file