Skip to content

Commit be52b3a

Browse files
committed
πŸ“¦ New release, bump to version 0.11.
1 parent d6d446c commit be52b3a

File tree

3 files changed

+35
-4
lines changed

3 files changed

+35
-4
lines changed

β€Ždocs/pypi.rstβ€Ž

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
texturize
2+
=========
3+
4+
.. image:: https://raw.githubusercontent.com/photogeniq/neural-texturize/master/docs/grass-x4.webp
5+
6+
A command-line tool and Python library to automatically generate new textures similar
7+
to a source image or photograph. It's useful in the context of computer graphics if
8+
you want to make variations on a theme or expand the size of an existing texture.
9+
10+
This software is powered by deep learning technology β€” using a combination of
11+
convolution networks and example-based optimization to synthesize images. We're
12+
building ``texturize`` as the highest-quality open source library available!
13+
14+
|Python Version| |License Type| |Project Stars| |Package Version| |Build Status|
15+
16+
----
17+
18+
.. |Python Version| image:: https://img.shields.io/pypi/pyversions/texturize
19+
:target: https://www.python.org/
20+
21+
.. |License Type| image:: https://img.shields.io/badge/license-AGPL-blue.svg
22+
:target: https://github.com/photogeniq/neural-texturize/blob/master/LICENSE
23+
24+
.. |Project Stars| image:: https://img.shields.io/github/stars/photogeniq/neural-texturize.svg?style=flat
25+
:target: https://github.com/photogeniq/neural-texturize/stargazers
26+
27+
.. |Package Version| image:: https://img.shields.io/pypi/v/texturize?color=turquoise
28+
:alt: PyPI - Version
29+
30+
.. |Build Status| image:: https://img.shields.io/github/workflow/status/photogeniq/neural-texturize/build
31+
:alt: GitHub Workflow Status

β€Žpyproject.tomlβ€Ž

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
[tool.poetry]
22
name = "texturize"
3-
description = "πŸ€–πŸ–ŒοΈ Automatically generate new textures similar to a source photograph."
4-
version = "0.10.0"
3+
description = "πŸ€–πŸ–ŒοΈ Generate new photo-realistic textures similar to a source image."
4+
version = "0.11.0"
55
authors = ["Alex J. Champandard <[email protected]>"]
6-
readme = "README.rst"
6+
readme = "docs/pypi.rst"
77
repository = "https://github.com/photogeniq/neural-texturize"
88
license = "AGPL-3.0"
99
classifiers = [

β€Žsrc/texturize/__init__.pyβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# neural-texturize β€” Copyright (c) 2020, Novelty Factory KG. See LICENSE for details.
22

3-
__version__ = "0.10"
3+
__version__ = "0.11"

0 commit comments

Comments
Β (0)