import setuptools with open("README.md", "r", encoding="utf-8") as fh: long_description = fh.read() setuptools.setup( name="scVAR", version="0.0.1", author="Samuele Manessi", author_email="samuele.manessi@itb.cnr.it", description="A tool to integrate genomics and transcriptomics in scRNA-seq data.", long_description=long_description, long_description_content_type="text/markdown", #url="https://github.com/ILTUOACCOUNT/ILTUOPACCHETTO", packages=setuptools.find_packages(include=['scVAR', 'scVAR.*']), classifiers=[ "Programming Language :: Python :: 3", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", ], install_requires = [ 'numpy', 'pandas', 'scanpy', #'gc', 'torch', 'umap', 'anndata', 'sklearn', 'scipy', 'matplotlib' ], python_requires='>=3.10', )