Skip to content

Commit

Permalink
Merge pull request #32 from hesa/hesa-extend-pypi-info-ptII
Browse files Browse the repository at this point in the history
Update description in python package
  • Loading branch information
hesa authored Jan 27, 2025
2 parents 95d7838 + 14bd1fb commit 0f33349
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[bumpversion]
commit = False
tag = False
current_version = 0.5.3
current_version = 0.5.4
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,4 +56,4 @@ The following modifications are supported:

# Licomp reply format

See [Licomp Reply Format](docs/reply-format.md)
See [Licomp Reply Format](https://github.com/hesa/licomp/blob/main/docs/reply-format.md)
2 changes: 1 addition & 1 deletion licomp/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#
# SPDX-License-Identifier: GPL-3.0-or-later

licomp_version = '0.5.3'
licomp_version = '0.5.4'
licomp_api_version = '.'.join(licomp_version.split('.')[0:2])
licomp_module_name = 'licomp'
licomp_description = 'An interface to generalise license compatibility resources'
Expand Down
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,16 +16,16 @@
with open('requirements-dev.txt') as f:
requirements_dev = f.read().splitlines()

with open("README.md") as i:
_long_description = i.read()
with open("README.md") as f:
_long_description = f.read()

setuptools.setup(
name=licomp_module_name,
version=licomp_version,
author="Henrik Sanklef",
author_email="hesa@sandklef.com",
description=_long_description,
long_description=licomp_description,
description=licomp_description,
long_description=_long_description,
long_description_content_type="text/markdown",
license_files=('LICENSES/GPL-3.0-or-later.txt',),
url="https://github.com/hesa/licomp",
Expand Down

0 comments on commit 0f33349

Please sign in to comment.