-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (31 loc) · 890 Bytes
/
pyproject.toml
File metadata and controls
33 lines (31 loc) · 890 Bytes
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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "pypermut"
version = "0.2.2"
description = "PyPermut is a Python package implementing permutation tests"
authors = [
{ name = "Quentin Barthelemy" },
{ name = "Anonymous" },
{ name = "Louis Mayaud" },
]
license = "BSD-3-Clause"
readme = "README.md"
classifiers = [
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Scientific/Engineering",
"Topic :: Statistics",
"Topic :: Machine Learning",
]
requires-python = ">=3.9"
dependencies = [
"numpy >= 1.16.5",
"scipy >= 1.6.0",
"matplotlib >= 3.0.1",
]
[project.optional-dependencies]
docs = ["sphinx", "sphinx-gallery", "numpydoc", "scikit-learn"]
tests = ["flake8", "pytest"]