-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpyproject.toml
33 lines (31 loc) · 1.06 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
[tool.poetry]
name = "maxentropy"
version = "0.5.0"
description = "Maximum entropy and minimum divergence models in Python"
authors = ["Ed Schofield <ed@pythoncharmers.com>"]
license = "BSD"
readme = "README.md"
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Operating System :: Unix',
'Operating System :: MacOS',
'Programming Language :: Python :: 3',
'Topic :: Software Development',
'Topic :: Scientific/Engineering']
[tool.poetry.dependencies]
python = "^3.6"
numpy = "^1.26.4"
scipy = "^1.12.0"
scipy_maxentropy = "^1.0"
scikit-learn = "^1.4.1.post1"
[tool.poetry.group.dev.dependencies]
pytest = "^8.1.1"
mkdocs = "^1.5.3"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"