-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
48 lines (43 loc) · 1.08 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
[build-system]
requires = [
"numpy == 2.0.0",
"setuptools >= 61.0",
"wheel",
"scipy >= 1.13.1",
"Cython >= 3.0.4",
]
build-backend = "setuptools.build_meta"
[project]
name = "chainopy"
version = "1.0.3"
description = "A Python Library for Markov Chain based Stochastic Analysis!"
readme = "README.md"
requires-python = ">=3.10"
license = { file = "LICENSE" }
authors = [
{ name = "Aadya Aneesh Chinubhai", email = "[email protected]" }
]
keywords = ["markov chain", "stochastic analysis", "python"]
dependencies = [
"numpy == 2.0.0",
"Cython >= 3.0.4",
"scipy >= 1.13.0",
"xarray >= 2024.06.0",
"matplotlib >= 3.8.4",
"networkx == 3.3",
"torch >= 2.3.0",
"statsmodels >= 0.14.2"
]
[project.urls]
homepage = "https://chainopy.readthedocs.io/en/latest/"
repository = "https://github.com/aadya940/chainopy"
[tool.cibuildwheel]
# Disable building PyPy wheels on all platforms
skip = "pp* *musllinux*"
[tool.cibuildwheel.linux]
before-all=[
"yum install -y openblas-devel",
]
archs = ["auto64"]
[tool.cibuildwheel.windows]
archs = ["auto64"]