Skip to content

Commit

Permalink
Add long description to setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Pieter Lambrecht committed May 7, 2024
1 parent 3b8de45 commit 0ab1479
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,16 @@
from setuptools import find_packages, setup

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

setup(
name='netbox_ipcalculator',
version='1.4.0',
description='Netbox IP Calculator',
long_description=long_description,
long_description_content_type='text/markdown'
url='https://github.com/PieterL75/netbox_ipcalculator',
author='Pieter Lambrecht',
license='Apache 2.0',
Expand Down

0 comments on commit 0ab1479

Please sign in to comment.