-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (33 loc) · 980 Bytes
/
pyproject.toml
File metadata and controls
37 lines (33 loc) · 980 Bytes
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "decompy"
authors = [
{ name = "Subhrajyoty Roy", email = "subhrajyotyroy@gmail.com" }
]
description = "A python package containing several robust algorithms for matrix decomposition, rank estimation and relevant analysis."
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
dependencies = [
"numpy>=1.23",
"tqdm",
"scipy"
]
requires-python = ">=3.9"
license = {file = "LICENSE"}
readme = "README.md"
dynamic = ["version"]
[tool.setuptools.dynamic]
version = {attr = "decompy.__version__"}
[tool.pytest.ini_options]
pythonpath = [
".", "src",
]
[project.urls]
"Homepage" = "https://github.com/subroy13/decompy"
Repository = "https://github.com/subroy13/decompy.git"
"Bug Tracker" = "https://github.com/subroy13/decompy/issues"
Changelog = "https://github.com/subroy13/decompy/blob/master/CHANGELOG.md"