mirror of
https://github.com/krateng/maloja.git
synced 2025-07-09 03:04:07 -04:00
Temporary fix for divergent package and project name
This commit is contained in:
parent
1b0e3ffdb2
commit
fb2dff8add
5
.github/workflows/pypi.yml
vendored
5
.github/workflows/pypi.yml
vendored
@ -19,10 +19,11 @@ jobs:
|
|||||||
python-version: '3.x'
|
python-version: '3.x'
|
||||||
|
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: pip install build
|
run: pip install build setuptools
|
||||||
|
|
||||||
- name: Build package
|
- name: Build package
|
||||||
run: python -m build
|
#run: python -m build
|
||||||
|
run: python setup.py sdist bdist_wheel
|
||||||
|
|
||||||
- name: Publish to PyPI
|
- name: Publish to PyPI
|
||||||
uses: pypa/gh-action-pypi-publish@release/v1
|
uses: pypa/gh-action-pypi-publish@release/v1
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
[project]
|
[project]
|
||||||
name = "maloja"
|
name = "maloja"
|
||||||
version = "2.14.0"
|
pypi_name = "malojaserver"
|
||||||
|
version = "2.14.1"
|
||||||
description = "Self-hosted music scrobble database"
|
description = "Self-hosted music scrobble database"
|
||||||
readme = "./README.md"
|
readme = "./README.md"
|
||||||
requires-python = ">=3.6"
|
requires-python = ">=3.6"
|
||||||
|
2
setup.py
2
setup.py
@ -12,7 +12,7 @@ with open(projectdata['readme'], "r") as fh:
|
|||||||
long_description = fh.read()
|
long_description = fh.read()
|
||||||
|
|
||||||
setuptools.setup(
|
setuptools.setup(
|
||||||
name=projectdata['name'],
|
name=projectdata.get('pypi_name') or projectdata['name'],
|
||||||
version=projectdata['version'],
|
version=projectdata['version'],
|
||||||
author=projectdata['authors'][0]['name'],
|
author=projectdata['authors'][0]['name'],
|
||||||
author_email=projectdata['authors'][0]['email'],
|
author_email=projectdata['authors'][0]['email'],
|
||||||
|
Loading…
x
Reference in New Issue
Block a user