-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpyproject.toml
30 lines (26 loc) · 1008 Bytes
/
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "aleatory"
version = "1.0.1"
authors = [{ name = "Dialid Santiago", email = "[email protected]" }, ]
description = "Stochastic Processes Simulation and Visualisation"
readme = "README.md"
requires-python = ">=3.8"
dependencies = ["pandas>=1.5.2",
"numpy>=1.23.5",
"scipy>=1.9.3",
"matplotlib>=3.6.2",
"statsmodels>=0.13.5",
"parameterized>=0.8.1"
]
classifiers = ["Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Scientific/Engineering :: Visualization"]
[project.urls]
"Homepage" = "https://github.com/quantgirluk/aleatory"
"Bug Tracker" = "https://github.com/quantgirluk/aleatory/issues"
"Documentation" = "https://aleatory.readthedocs.io/en/latest/"