Skip to content

Commit 904543c

Browse files
committed
Update pyproject
1 parent 24ab55e commit 904543c

File tree

2 files changed

+22
-2
lines changed

2 files changed

+22
-2
lines changed

pyproject.toml

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,23 @@
11
[build-system]
22
requires = ["setuptools", "wheel", "cibuildwheel", "pybind11"]
3-
build-backend = "setuptools.build_meta"
3+
build-backend = "setuptools.build_meta"
4+
5+
[project]
6+
name = "pycirclemedianfilter"
7+
version = "0.1.0"
8+
authors = [
9+
{ name="Martin Storath", email="martin.storath@thws.de" },
10+
]
11+
description = "Fast median filter for circle-valued data, for example signals or images describing phase or orientation"
12+
readme = "README.md"
13+
requires-python = ">=3.9"
14+
classifiers = [
15+
"Programming Language :: Python :: 3",
16+
"Operating System :: OS Independent",
17+
]
18+
license = "MIT"
19+
license-files = ["LICENSE"]
20+
21+
[project.urls]
22+
Homepage = "https://github.com/mstorath/CircleMedianFilter"
23+
Issues = "https://github.com/mstorath/CircleMedianFilter/issues"

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,5 +29,5 @@
2929
],
3030
python_requires=">=3.9",
3131
license="MIT",
32-
license_file="LICENSE",
32+
license_files=["LICENSE"]
3333
)

0 commit comments

Comments
 (0)