-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (35 loc) · 1.41 KB
/
Copy pathpyproject.toml
File metadata and controls
41 lines (35 loc) · 1.41 KB
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
[build-system]
requires = ["setuptools >= 82"]
build-backend = "setuptools.build_meta"
[project]
name = "ennemi"
version = "1.6.0"
requires-python = ">=3.12"
dependencies = [ "numpy~=2.0", "scipy~=1.13" ]
description = "Non-linear correlation detection with mutual information"
readme = "DESCRIPTION.md"
authors = [{ name="Petri Laarne", email="petri.laarne@helsinki.fi" }]
license = "MIT"
license-files = [ "LICENSE.md" ]
keywords = ["information theory", "entropy", "mutual information", "data analysis", "scientific"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Scientific/Engineering :: Physics",
"Typing :: Typed"
]
[project.urls]
Documentation = "https://polsys.github.io/ennemi/"
Source = "https://github.com/polsys/ennemi/"
Issues = "https://github.com/polsys/ennemi/issues"
Zenodo = "https://doi.org/10.5281/zenodo.3834018"
[project.optional-dependencies]
dev = [ "pandas>=2.2", "pytest~=8.0", "ty~=0.0.21" ]