-
Notifications
You must be signed in to change notification settings - Fork 12
/
pyproject.toml
executable file
·26 lines (23 loc) · 1.12 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
[build-system]
requires = ["setuptools", "wheel", "Cython>=0.29.23", "numpy >= 1.20"]
[project.urls]
"Homepage"= "https://github.com/AlexanderFengler/ssm-simulators"
"Bug Tracker"= "https://github.com/AlexanderFengler/ssm-simulators/issues"
[project]
name= "ssm-simulators"
version= "0.8.3"
authors= [{name = "Alexander Fenger", email = "[email protected]"}]
description= "SSMS is a package collecting simulators and training data generators for a bunch of generative models of interest in the cognitive science / neuroscience and approximate bayesian computation communities"
readme = "README.md"
requires-python= ">=3.10, <=3.12"
classifiers= [
"Development Status :: 1 - Planning",
"Environment :: Console",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Topic :: Scientific/Engineering"
]
dependencies=["numpy >= 1.17.0, <2.0.0", "scipy >=1.6.3", "pandas >= 1.0.0", "scikit-learn >= 0.24.0", "psutil >= 5.0.0", "pathos >= 0.3.0"]
keywords= ["simulators", "generative models", "cognitive science", "neuroscience"]
[project.optional-dependencies]
dev = ["black", "ruff", "pytest"]