Skip to content

Commit e9069ff

Browse files
committed
- pypi description
1 parent cc0d746 commit e9069ff

4 files changed

Lines changed: 7 additions & 10 deletions

File tree

.github/workflows/Publish.Pypi.yml

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,7 @@ jobs:
1414
- name: Install dependencies
1515
run: |
1616
python -m pip install --upgrade pip
17-
pip install build twine asciidoc
18-
- name: Convert README
19-
run: asciidoc -b docbook README.adoc
20-
- uses: docker://pandoc/core
21-
with:
22-
args: "-f docbook README.xml -t markdown_strict -o README.md"
17+
pip install build twine
2318
- name: Get VERSION
2419
id: GetVersion
2520
uses: WyriHaximus/github-action-get-previous-tag@v1

CHANGELOG.adoc

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@ toc::[]
1010

1111
== 1.0 (2021-04-17)
1212

13+
=== 1.0.1
14+
15+
* - pypi description
16+
1317
=== 1.0.0
1418

1519
* Init

README.adoc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ image:https://badge.fury.io/py/Isconna.svg["PyPI version", link="https://pypi.or
99
Python porting of the https://github.com/liurui39660/Isconna[Isconna] algorithm.
1010

1111
.For pip users:
12+
* To install: `pip install --upgrade Isconna`
1213
* The demo is not included, see section <<External Dataset + Custom Runner>> for how to use Isconna
1314
* The complete change log is at link:CHANGELOG.adoc[]
1415

setup.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
from setuptools import setup
22

3-
with open("README.md") as file: # Created in CI
4-
description = file.read()
5-
63
with open("VERSION") as file: # Created in CI
74
version = file.readline()
85

@@ -12,7 +9,7 @@
129
author="Rui LIU",
1310
author_email="xxliuruiabc@gmail.com",
1411
description="Python porting of the Isconna algorithm",
15-
long_description=description,
12+
long_description="Pypi does not support an AsciiDoc README, please visit our GitHub repo https://github.com/liurui39660/Isconna.Python.",
1613
long_description_content_type="text/markdown",
1714
url="https://github.com/liurui39660/Isconna.Python",
1815
project_urls={},

0 commit comments

Comments
 (0)