-
Notifications
You must be signed in to change notification settings - Fork 11
/
pyproject.toml
46 lines (36 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
43
44
45
[build-system]
requires = [
'setuptools',
'numpy>=2.0.0',
]
build-backend = "setuptools.build_meta"
[project]
name = "mc3"
description = "Multi-core Markov-chain Monte Carlo package"
readme = "README.md"
license = { file = "LICENSE" }
#https://packaging.python.org/en/latest/guides/single-sourcing-package-version/
dynamic = ["version"]
requires-python = ">=3.9"
authors = [
{name = "Patricio Cubillos", email = "[email protected]"},
]
dependencies = [
'numpy>=1.23.5',
'scipy>=1.5.4',
'matplotlib>=3.3.4',
]
[project.optional-dependencies]
test = [
'pytest>=6.0',
]
[project.urls]
"Homepage" = "https://github.com/pcubillos/mc3"
#https://setuptools.pypa.io/en/stable/userguide/entry_point.html#console-scripts
[project.scripts]
mc3 = "mc3.__main__:main"
[tool.setuptools.dynamic]
version = {attr = "mc3.version.__version__"}
#https://setuptools.pypa.io/en/stable/userguide/package_discovery.html
[tool.setuptools.packages]
find = {namespaces = false} # Take only folders with a __init__.py file