Skip to content

Commit 3a6218d

Browse files
committed
desc
1 parent 7b9a180 commit 3a6218d

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

pyproject.toml

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

setup.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
import markdown2
33

44

5+
# Read the contents of the README.md file
56
with open("README.md", "r", encoding="utf-8") as readme_file:
67
long_description = readme_file.read()
78

@@ -14,10 +15,10 @@
1415
version='0.1',
1516
description='Python, create desktop applications based on Chromium',
1617
long_description=long_description,
17-
long_description_content_type="text/html",
18+
long_description_content_type="text/markdown",
1819
author='zabbix-byte',
1920
license='MIT',
20-
install_requires=['cefpython3==66.1', 'Jinja2==3.1.2', 'wxPython==4.2.1', 'markdown2'],
21+
install_requires=['cefpython3==66.1', 'Jinja2==3.1.2', 'wxPython==4.2.1'],
2122
classifiers=[
2223
# Chose either "3 - Alpha", "4 - Beta" or "5 - Production/Stable" as the current state of your package
2324
'Development Status :: 3 - Alpha',

0 commit comments

Comments
 (0)