Forked from
BATARDIERE Bastien / pyPLNmodels
-
Bastien Batardière authored
public. PlnPCAcollection is a collection, I implement all the required methods such as __getitem__ etc, and wrote tests for it.
Bastien Batardière authoredpublic. PlnPCAcollection is a collection, I implement all the required methods such as __getitem__ etc, and wrote tests for it.
pyproject.toml 1.49 KiB
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
[project]
name = "pyPLNmodels"
dynamic = ["version"]
description = "Package implementing PLN models"
readme = "README.md"
license = {text = "MIT License"}
requires-python = ">=3.7"
keywords = [
"python",
"count",
"data",
"count data",
"high dimension",
"scRNAseq",
"PLN",
]
authors = [
{name = "Bastien Batardiere", email = "bastien.batardiere@gmail.com"},
{name = "Julien Chiquet", email = "julien.chiquet@inrae.fr"},
{name = "Joon Kwon", email = "joon.kwon@inrae.fr"},
]
maintainers = [{name = "Bastien Batardière", email = "bastien.batardiere@gmail.com"},
{name = "Julien Chiquet", email = "julien.chiquet@inrae.fr"},
]
classifiers = [
# How mature is this project? Common values are
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
"Development Status :: 4 - 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",
]
dependencies = [
"matplotlib",
"numpy",
"pandas",
"scipy",
"seaborn",
"torch"
]