-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (50 loc) · 1.45 KB
/
pyproject.toml
File metadata and controls
57 lines (50 loc) · 1.45 KB
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
46
47
48
49
50
51
52
53
54
55
56
57
[build-system]
requires = ["setuptools", "setuptools_scm>=6.2"]
build-backend = "setuptools.build_meta"
[project]
name = "numba-progress"
authors = [
{name = "Felix Igelbrink", email = "felix.igelbrink@dfki.de"},
]
description = 'A tqdm-compatible progress bar implementation for numba functions'
readme = "README.md"
requires-python = ">= 3.10"
keywords = []
license = {text = "MIT"}
classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
"Intended Audience :: Developers",
"Topic :: Scientific/Engineering",
"Topic :: Software Development",
]
dependencies = [
'numba>=0.52',
'numpy',
'tqdm'
]
dynamic = ["version"]
[project.optional-dependencies]
dev = ["pytest"]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
filterwarnings = ["ignore::DeprecationWarning"]
[project.urls]
Homepage = "https://github.com/mortacious/numba-progress"
Issues = "https://github.com/mortacious/numba-progress/issues"
[tool.setuptools]
license-files = ["../LICENSE"]
[tool.setuptools_scm]
write_to = "numba_progress/_version.py"
version_scheme = "only-version"
local_scheme = "no-local-version"
[tool.setuptools.packages.find]
include = [
'numba_progress'
]