-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
42 lines (38 loc) · 1.02 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
[tool.poetry]
name = "smc-movement-models"
version = "1.0.0"
description = "Projet pour le cours Hidden Markov models and Sequential Monte-Carlo methods de l'ENSAE."
authors = [
"Gabriel Watkinson <gabriel.watkinson@gmail.com>",
"Gabriel Guaquiere <gabriel.guaquiere@ensae.fr>",
"Jérémie Stym-Popper <jeremie.stym-popper@ensae.fr>",
"Benjamin Maurel <benjamin.maurel@ensae.fr>"
]
license = "MIT"
readme = "README.md"
packages = [{include = "smc_movement_models"}]
[tool.poetry.dependencies]
python = ">3.8, <3.11"
# Scientific packages
numpy = "1.23.5"
scipy = "^1.8, <1.9"
particles = "^0.3"
pandas = "^1.5.2"
statsmodels = "^0.13.5"
# Plottin packages
matplotlib = "^3.6.2"
seaborn = "^0.12.1"
plotly = "^5.11.0"
# Environment packages
jupyter = "^1.0.0"
notebook = "^6.5.2"
click = "^8.1.3"
tqdm = "^4.64.1"
# Specific packages
llvmlite = "0.39.1 "
[tool.poetry.group.dev.dependencies]
pre-commit = "^2.20.0"
removestar = "^1.3.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"