Skip to content

Commit

Permalink
add long_description for publishing to pypi
Browse files Browse the repository at this point in the history
  • Loading branch information
ynqa committed Mar 31, 2023
1 parent 9d78a9b commit 04f1e3c
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,16 @@
from setuptools import setup
from setuptools import find_packages

from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()

setup(
name='pandavro',
version='1.7.2',
description='The interface between Avro and pandas DataFrame',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/ynqa/pandavro',
author='Makoto Ito',
author_email='[email protected]',
Expand Down

0 comments on commit 04f1e3c

Please sign in to comment.