Temporary fix for divergent package and project name

This commit is contained in:
krateng 2021-12-31 05:16:26 +01:00
parent 1b0e3ffdb2
commit fb2dff8add
3 changed files with 6 additions and 4 deletions

View File

@ -19,10 +19,11 @@ jobs:
python-version: '3.x'
- name: Install dependencies
run: pip install build
run: pip install build setuptools
- name: Build package
run: python -m build
#run: python -m build
run: python setup.py sdist bdist_wheel
- name: Publish to PyPI
uses: pypa/gh-action-pypi-publish@release/v1

View File

@ -1,6 +1,7 @@
[project]
name = "maloja"
version = "2.14.0"
pypi_name = "malojaserver"
version = "2.14.1"
description = "Self-hosted music scrobble database"
readme = "./README.md"
requires-python = ">=3.6"

View File

@ -12,7 +12,7 @@ with open(projectdata['readme'], "r") as fh:
long_description = fh.read()
setuptools.setup(
name=projectdata['name'],
name=projectdata.get('pypi_name') or projectdata['name'],
version=projectdata['version'],
author=projectdata['authors'][0]['name'],
author_email=projectdata['authors'][0]['email'],