Skip to content
Snippets Groups Projects
setup.py 1.93 KiB
Newer Older
from setuptools import setup, find_packages

VERSION = "0.0.43"

with open("README.md", "r") as fh:
    long_description = fh.read()
with open("requirements.txt", "r") as fh:
    requirements = [line.strip() for line in fh]

setup(
    name="pyPLNmodels",
    description="Package implementing PLN models",
        "Source": "https://forgemia.inra.fr/bbatardiere/pyplnmodels",
        "Documentation": "https://bbatardiere.pages.mia.inra.fr/pyplnmodels/index.html",
    },
    author="Bastien Batardière, Julien Chiquet, Joon Kwon",
    author_email="bastien.batardiere@gmail.com, julien.chiquet@inrae.fr, joon.kwon@inrae.fr",
    long_description=long_description,
    packages=find_packages(),
    python_requires=">=3",
    keywords=[
        "python",
        "count",
        "data",
        "count data",
        "high dimension",
        "scRNAseq",
        "PLN",
    ],
    install_requires=requirements,
    py_modules=[
        "pyPLNmodels._utils",
        "pyPLNmodels.elbos",
        "pyPLNmodels.models",
        "pyPLNmodels._closed_forms",
    ],
    long_description_content_type="text/markdown",
    # See https://pypi.python.org/pypi?%3Aaction=list_classifiers
    classifiers=[
        # How mature is this project? Common values are
        #   3 - Alpha
        #   4 - Beta
        #   5 - Production/Stable
        "Development Status :: 3 - Alpha",
        # Indicate who your project is intended for
        "Intended Audience :: Science/Research",
        # Pick your license as you wish (should match "license" above)
        "License :: OSI Approved :: MIT License",
        # Specify the Python versions you support here. In particular, ensure
        # that you indicate whether you support Python 2, Python 3 or both.
        "Programming Language :: Python :: 3 :: Only",
    package_data={"": ["data/oaks/*.csv"]},