Newer
Older
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
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(
version=VERSION,
description="Package implementing PLN models",
project_urls={
"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",
],
py_modules=[
"pyPLNmodels._utils",
"pyPLNmodels.elbos",
"pyPLNmodels._closed_forms",
],
long_description_content_type="text/markdown",
license="MIT",
# 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",
include_package_data=True,