-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
60 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
# Sketch Image | ||
|
||
Convert Images to Sketches | ||
|
||
# Installation | ||
|
||
```bash | ||
pip install sketch-image | ||
``` | ||
|
||
# Get Started | ||
|
||
```bash | ||
sketch-image --image <image_path> --output <output_path> | ||
``` | ||
|
||
Note: The `--image` and `--output` flags are optional. | ||
|
||
- The CLI will prompt for input image path until supplied. | ||
- The output will be placed in the Pictures directory within the user's home directory by default. | ||
|
||
For help, run: | ||
|
||
```bash | ||
sketch-image --help | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
[build-system] | ||
requires = ["setuptools"] | ||
build-backend = "setuptools.build_meta" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
[metadata] | ||
name = sketch-image | ||
version = 0.0.1 | ||
author = Shreyam Pokharel | ||
author_email = [email protected] | ||
description = Convert images into sketches | ||
long_description = file: README.md | ||
long_description_content_type = text/markdown | ||
url = https://github.com/pshreyam/image-sketcher | ||
project_urls = | ||
Bug Tracker = https://github.com/pshreyam/image-sketcher/issues | ||
classifiers = | ||
Programming Language :: Python :: 3 | ||
License :: OSI Approved :: MIT License | ||
Operating System :: OS Independent | ||
|
||
[options] | ||
packages = find: | ||
python_requires = >=3.6 | ||
install_requires= | ||
click==8.1.3 | ||
numpy==1.23.4 | ||
opencv-python==4.6.0.66 | ||
|
||
[options.entry_points] | ||
console_scripts = | ||
sketch-image = sketch_image.__main__:convert |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters