-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
73 lines (66 loc) · 1.94 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
[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 = "[email protected]"},
{name = "Julien Chiquet", email = "[email protected]"},
{name = "Joon Kwon", email = "[email protected]"},
]
maintainers = [{name = "Bastien Batardière", email = "[email protected]"},
{name = "Julien Chiquet", email = "[email protected]"},
]
classifiers = [
# How mature is this project? Common values are
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
"Development Status :: 4 - Beta",
# 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",
]
dependencies = [
"matplotlib",
"numpy",
"pandas",
"scipy",
"seaborn",
"torch",
"scikit-learn",
"patsy",
"tqdm",
"statsmodels",
]
[project.optional-dependencies]
tests = ["pytest","pytest_lazy_fixture"]
build-doc = ["sphinx","sphinx_rtd_theme"]
[project.urls]
Repository = "https://github.com/PLN-team/pyPLNmodels"
Documentation = "https://bbatardiere.pages.mia.inra.fr/pyplnmodels"
[tool.setuptools]
py-modules = ["pyPLNmodels"]
include-package-data = true
[tool.setuptools.packages.find]
include = ["pyPLNmodels", "pyPLNmodels.*"]
namespaces = false