-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
52 lines (44 loc) · 1.27 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
46
47
48
49
50
51
52
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "binlets"
authors = [
{ name="Mauro Silberberg", email="[email protected]" },
]
description = "Denoising via adaptive binning."
requires-python = ">=3.7"
keywords = [
"denoising",
"adaptive",
"wavelets",
]
license = { file="LICENSE" }
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"Topic :: Software Development :: Libraries",
]
dynamic = ["dependencies", "optional-dependencies", "version"]
[project.readme]
file = "README.md"
content-type = "text/markdown"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.dynamic]
dependencies = {file = "requirements.txt"}
optional-dependencies.test = {file = "requirements.test.txt"}
[project.urls]
"Homepage" = "https://github.com/maurosilber/binlets"
"Bug Tracker" = "https://github.com/maurosilber/binlets/issues"
[tool.setuptools_scm]
[tool.pytest.ini_options]
addopts = "--import-mode=importlib"
pythonpath = "."
[tool.ruff]
select = ["E", "F", "I"]
ignore = ["E501"]