-
Notifications
You must be signed in to change notification settings - Fork 13
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
1 parent
908cc18
commit 1fbd21a
Showing
3 changed files
with
16 additions
and
6 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
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
[bumpversion] | ||
current_version = 0.17.0 | ||
current_version = 0.18.0 | ||
commit = True | ||
tag = True | ||
|
||
|
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 |
---|---|---|
@@ -1,10 +1,8 @@ | ||
|
||
from setuptools import setup, find_packages | ||
|
||
from setuptools import find_packages, setup | ||
|
||
setup( | ||
name="tiptapy", | ||
version='0.17.0', # TODO: why bumpversion works only for single quotes? | ||
version="0.18.0", # TODO: why bumpversion works only for single quotes? | ||
url="https://github.com/scrolltech/tiptapy", | ||
description="Library that generates HTML output from JSON export of tiptap editor", | ||
long_description=open("README.md").read(), | ||
|
@@ -13,7 +11,13 @@ | |
author="Shekhar Tiwatne", | ||
author_email="[email protected]", | ||
license="http://www.opensource.org/licenses/mit-license.php", | ||
package_data={"tiptapy": ["templates/*.html", "templates/extras/*.html", "templates/marks/*.html"]}, | ||
package_data={ | ||
"tiptapy": [ | ||
"templates/*.html", | ||
"templates/extras/*.html", | ||
"templates/marks/*.html", | ||
] | ||
}, | ||
classifiers=[ | ||
"Programming Language :: Python :: 3", | ||
"License :: OSI Approved :: MIT License", | ||
|