-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add long_description for publishing to pypi
- Loading branch information
Showing
1 changed file
with
6 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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]', | ||
|