Skip to content

Commit c9b59e5

Browse files
prepare for pypi publication
1 parent d15bdc2 commit c9b59e5

4 files changed

Lines changed: 34 additions & 3 deletions

File tree

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,12 @@ panorama = stitcher.stitch(["img1.jpg", "img2.jpg", "img3.jpg"])
2424

2525
```
2626

27-
or using the [command line tool](https://github.com/lukasalexanderweber/stitching/blob/pip_package/stitching.py)
27+
or using the [command line tool](https://github.com/lukasalexanderweber/stitching/blob/main/stitching_tool.py)
2828

2929

3030
```
31-
python stitching.py -h
32-
python stitching.py img1.jpg img2.jpg img3.jpg
31+
python stitching_tool.py -h
32+
python stitching_tool.py img1.jpg img2.jpg img3.jpg
3333
```
3434

3535
## Tutorial

pyproject.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[build-system]
2+
requires = ["setuptools>=42"]
3+
build-backend = "setuptools.build_meta"

setup.cfg

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
[metadata]
2+
name = stitching
3+
version = attr: stitching.__version__
4+
description = A Python package for fast and robust Image Stitching
5+
long_description = file: README.md
6+
long_description_content_type = text/markdown
7+
author = Lukas Weber
8+
author_email = l.a.weber@outlook.de
9+
license = Apache License 2.0
10+
license_file = LICENSE
11+
platforms = any
12+
classifiers =
13+
Programming Language :: Python :: 3 :: Only
14+
project_urls =
15+
Source = https://github.com/lukasalexanderweber/stitching
16+
Bug Tracker = https://github.com/lukasalexanderweber/stitching/issues
17+
18+
[options]
19+
packages = find:
20+
install_requires =
21+
opencv-python>=4.0.1
22+
largestinteriorrectangle
23+
include_package_data = True
24+
zip_safe = False
25+
26+
[options.packages.find]
27+
include = stitching
28+
exclude = tests
File renamed without changes.

0 commit comments

Comments
 (0)