Aight if this doesn't work I'm switching to Rust

This commit is contained in:
krateng 2021-12-31 06:10:47 +01:00
parent 868b8396a0
commit 21d1643988
3 changed files with 4 additions and 3 deletions

View File

@ -4,7 +4,7 @@
# you know what f*ck it # you know what f*ck it
# this is hardcoded for now because of that damn project / package name discrepancy # this is hardcoded for now because of that damn project / package name discrepancy
# i'll fix it one day # i'll fix it one day
VERSION = "2.14.4" VERSION = "2.14.5"
HOMEPAGE = "https://github.com/krateng/maloja" HOMEPAGE = "https://github.com/krateng/maloja"

View File

@ -1,7 +1,7 @@
[project] [project]
name = "maloja" name = "maloja"
pypi_name = "malojaserver" pypi_name = "malojaserver"
version = "2.14.4" version = "2.14.5"
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"

View File

@ -21,7 +21,7 @@ setuptools.setup(
long_description=long_description, long_description=long_description,
long_description_content_type="text/markdown", long_description_content_type="text/markdown",
url=projectdata['urls']['repository'], url=projectdata['urls']['repository'],
packages=[projectdata['name']], packages=setuptools.find_packages("."),
classifiers=[ classifiers=[
"Programming Language :: Python :: 3", "Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)", "License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
@ -29,6 +29,7 @@ setuptools.setup(
], ],
python_requires=projectdata['requires-python'], python_requires=projectdata['requires-python'],
install_requires=projectdata['dependencies'], install_requires=projectdata['dependencies'],
package_data={'': ['*','*/*','*/*/*','*/*/*/*','*/*/.*','*/*/*/.*']},
include_package_data=True, include_package_data=True,
entry_points = { entry_points = {
'console_scripts':[ 'console_scripts':[