Skip to content

Commit 922ee5b

Browse files
committed
readme and long description
1 parent af73044 commit 922ee5b

File tree

3 files changed

+8
-1
lines changed

3 files changed

+8
-1
lines changed

.github/workflows/pip.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
strategy:
1212
fail-fast: false
1313
matrix:
14-
os: [ubuntu-22.04, windows-2022, macos-13]
14+
os: [ubuntu-22.04, macos-13, windows-2022]
1515
python-version: ["3.7", "3.11"]
1616
runs-on: ${{ matrix.os }}
1717
steps:

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# It's Android's first OpenOffice Document Reader!
2+
3+
This is a Python frontend for our C++ OpenDocument.core library. Feel free to use it in your own project too, but please don't forget to tell us about it!

setup.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
from skbuild_conan import setup
22
from setuptools import find_packages
33
import subprocess
4+
from pathlib import Path
45

56

67
conan_odr_remote = "https://artifactory.opendocument.app/artifactory/api/conan/conan"
@@ -18,6 +19,8 @@
1819
check=True,
1920
)
2021

22+
this_directory = Path(__file__).parent
23+
long_description = (this_directory / "README.md").read_text()
2124

2225
setup(
2326
name="pyodr",
@@ -26,6 +29,7 @@
2629
author_email="[email protected]",
2730
description="It's Android's first OpenOffice Document Reader for Python!",
2831
long_description="",
32+
long_description_content_type="text/markdown",
2933
python_requires=">=3.7",
3034
cmake_minimum_required_version="3.12",
3135
packages=find_packages("src"),

0 commit comments

Comments
 (0)