mirror of
https://github.com/ankitects/anki.git
synced 2025-09-18 14:02:21 -04:00
don't reference missing readme in setup.py
This commit is contained in:
parent
ebe7ff7a37
commit
f8df688648
2 changed files with 2 additions and 8 deletions
|
@ -1,8 +1,5 @@
|
|||
import setuptools, sys
|
||||
|
||||
with open("README.md", "r") as fh:
|
||||
long_description = fh.read()
|
||||
|
||||
with open("../meta/version") as fh:
|
||||
version = fh.read().strip()
|
||||
|
||||
|
@ -17,7 +14,7 @@ setuptools.setup(
|
|||
version=version,
|
||||
author="Ankitects Pty Ltd",
|
||||
description="Anki's library code",
|
||||
long_description=long_description,
|
||||
long_description="Anki's library code",
|
||||
long_description_content_type="text/markdown",
|
||||
url="https://apps.ankiweb.net",
|
||||
packages=setuptools.find_packages(".", exclude=["tests"]),
|
||||
|
|
|
@ -1,8 +1,5 @@
|
|||
import setuptools, sys, os
|
||||
|
||||
with open("README.md", "r") as fh:
|
||||
long_description = fh.read()
|
||||
|
||||
with open("../meta/version") as fh:
|
||||
version = fh.read().strip()
|
||||
|
||||
|
@ -23,7 +20,7 @@ setuptools.setup(
|
|||
version=version,
|
||||
author="Ankitects Pty Ltd",
|
||||
description="Anki's Qt GUI code",
|
||||
long_description=long_description,
|
||||
long_description="Anki's QT GUI code",
|
||||
long_description_content_type="text/markdown",
|
||||
url="https://apps.ankiweb.net",
|
||||
packages=setuptools.find_packages(".", exclude=["tests"]),
|
||||
|
|
Loading…
Reference in a new issue