Skip to content

Commit 57357b9

Browse files
committed
unbreak module format, tag for release
1 parent 5e607e7 commit 57357b9

File tree

4 files changed

+5
-2
lines changed

4 files changed

+5
-2
lines changed

__init__.py

Whitespace-only changes.

jinja2html/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
File renamed without changes.

setup.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,18 +5,19 @@
55

66
setuptools.setup(
77
name="jinja2html",
8-
version="0.3.0",
8+
version="0.2.1",
99
author="Fastily",
1010
author_email="fastily@users.noreply.github.com",
1111
description="friendly generation of websites with jinja2 templates",
1212
long_description=long_description,
1313
long_description_content_type="text/markdown",
1414
url="https://github.com/fastily/jinja2html",
15+
include_package_data=True,
1516
packages=setuptools.find_packages(),
1617
install_requires=['beautifulsoup4', 'Jinja2', 'lxml', 'watchdog', 'websockets'],
1718
entry_points={
1819
'console_scripts': [
19-
'jinja2html = jinja2html:main'
20+
'jinja2html = jinja2html:__main__.main'
2021
]
2122
},
2223
classifiers=[
@@ -27,4 +28,5 @@
2728
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
2829
"Operating System :: OS Independent",
2930
],
31+
python_requires='>=3.7',
3032
)

0 commit comments

Comments
 (0)