-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (46 loc) · 1.74 KB
/
Copy pathpyproject.toml
File metadata and controls
48 lines (46 loc) · 1.74 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
42
43
44
45
46
47
48
[project]
name = "mesohops"
version = "1.7.0"
# numba and numpy are pinned to a single minor version. numba minor
# releases have introduced stochastic test failures and memory issues,
# and numba binds against a specific numpy ABI. Upper-bound bumps for
# either dependency require running the level-2 test suite against the
# candidate version.
dependencies = [
"numpy>=2.3,<2.4",
"scipy>=1.15,<2.0",
"numba>=0.63,<0.64",
"pytest>=8.3,<9.0",
"pytest-level>=0.1,<0.2",
"pytest-cov>=6.0,<7.0",
]
requires-python = ">=3.12,<3.14"
authors = [
{name = "Leonel Varvelo", email = "leonel_varvelo@yahoo.com"},
{name = "Jacob Lynd", email = "jacobklynd@gmail.com"},
{name = "Brian Citty", email = "bcitty@utexas.edu"},
{name = "Tarun Gera", email = "tgera@utexas.edu"},
{name = "Alexia Hartzell", email = "alexiahartzell@utexas.edu"},
{name = "Zach W. Freeman", email = "zachwfreeman@utexas.edu"},
{name = "Mehtan Rahman", email = "mehtan.rahman@utexas.edu"},
{name = "Chase Anstead", email = "canstead34@gmail.com"},
{name = "Doran I. G. B. Raccah", email = "doran.raccah@utexas.edu"},
]
maintainers = [
{name = "Doran I. G. B. Raccah", email = "doran.raccah@utexas.edu"}
]
description = "Python Distribution of (adaptive) Hierarchy of Pure States (HOPS)"
readme = "README.md"
license = {file = "LICENSE"}
keywords = ["open quantum systems", "mesoscale", "spectroscopy", "excited-state dynamics", "non-Markovian"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python"
]
[project.urls]
Homepage = "https://captainexasperated.github.io/Readthedocs-Tutorial/"
Repository = "https://github.com/MesoscienceLab/mesohops"
[tool.pytest.ini_options]
markers = [
"order: mark test to run in a specific order"
]