Merge pull request #328 from hugovk/add-readme-to-pypi

Add README to PyPI page
pull/306/head^2
Lorenz Diener 2023-04-23 18:52:30 +03:00 zatwierdzone przez GitHub
commit 0178569714
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
1 zmienionych plików z 7 dodań i 0 usunięć

Wyświetl plik

@ -1,3 +1,5 @@
from pathlib import Path
from setuptools import setup
test_deps = [
@ -26,9 +28,14 @@ extras = {
"blurhash": blurhash_deps,
}
this_directory = Path(__file__).parent
long_description = (this_directory / "README.rst").read_text()
setup(name='Mastodon.py',
version='1.8.0',
description='Python wrapper for the Mastodon API',
long_description=long_description,
long_description_content_type='text/x-rst',
packages=['mastodon'],
install_requires=[
'requests>=2.4.2',