Skip to content

Commit

Permalink
load readme file as pypi description
Browse files Browse the repository at this point in the history
  • Loading branch information
digizeph committed Feb 26, 2022
1 parent bbdca7f commit 57f5eb1
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,14 +1,21 @@
import setuptools

# read the contents of your README file
from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()

setuptools.setup(
name='pybgpkit',
version='0.0.2',
version='0.0.2.post1',
description='BGPKIT tools Python bindings',
url='https://github.com/bgpkit/pybgpkit',
author='Mingwei Zhang',
author_email='mingwei@bgpkit.com',
packages=setuptools.find_packages(),
include_package_data=True,
long_description=long_description,
long_description_content_type='text/markdown',
install_requires=[
# available on pip
'pybgpkit-parser==0.0.1',
Expand Down

0 comments on commit 57f5eb1

Please sign in to comment.