Skip to content

Commit 8e6e228

Browse files
committed
setup.py
1 parent 904543c commit 8e6e228

File tree

3 files changed

+5
-24
lines changed

3 files changed

+5
-24
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,3 +20,5 @@ pycirclemedianfilter.egg-info/dependency_links.txt
2020
dist/pycirclemedianfilter-0.1.0-cp312-cp312-macosx_11_0_arm64.whl
2121
dist/pycirclemedianfilter-0.1.0.tar.gz
2222
pycirclemedianfilter.cpython-312-darwin.so
23+
dist/pycirclemedianfilter-0.1.1-cp312-cp312-macosx_11_0_arm64.whl
24+
dist/pycirclemedianfilter-0.1.1.tar.gz

pyproject.toml

Lines changed: 1 addition & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,3 @@
11
[build-system]
22
requires = ["setuptools", "wheel", "cibuildwheel", "pybind11"]
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"
3+
build-backend = "setuptools.build_meta"

setup.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
setup(
1515
name="pycirclemedianfilter",
16-
version="0.1.0",
16+
version="0.1.1",
1717
author="Martin Storath",
1818
author_email="martin.storath@thws.de",
1919
description="A Circle Median Filter package for Python",
@@ -28,6 +28,5 @@
2828
"Operating System :: OS Independent",
2929
],
3030
python_requires=">=3.9",
31-
license="MIT",
32-
license_files=["LICENSE"]
31+
license_files = ("LICENSE.txt",),
3332
)

0 commit comments

Comments
 (0)