-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
39 lines (31 loc) · 979 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
30
31
32
33
34
35
36
37
38
39
[build-system]
requires = [
'setuptools>=40.8.0',
'numpy>=2.0.0',
]
build-backend = "setuptools.build_meta"
[project]
name = "lbl-repack"
description = "A line-transition data compression 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 = "patricio.cubillos@oeaw.ac.at"},
]
dependencies = [
'numpy>=2.0',
'scipy>=1.13.0',
]
[project.urls]
"Homepage" = "https://github.com/pcubillos/repack"
#https://setuptools.pypa.io/en/stable/userguide/entry_point.html#console-scripts
[project.scripts]
repack = "repack.__main__:main"
[tool.setuptools.dynamic]
version = {attr = "repack.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