mirror of
https://github.com/krateng/maloja.git
synced 2025-04-16 08:50:32 +03:00
35 lines
1.0 KiB
Python
35 lines
1.0 KiB
Python
import setuptools
|
|
import importlib
|
|
|
|
module = importlib.import_module(setuptools.find_packages()[0])
|
|
|
|
with open("README.md", "r") as fh:
|
|
long_description = fh.read()
|
|
|
|
setuptools.setup(
|
|
name=module.name,
|
|
version=".".join(str(n) for n in module.version),
|
|
author=module.author["name"],
|
|
author_email=module.author["email"],
|
|
description="Self-hosted music scrobble database",
|
|
license="GPLv3",
|
|
long_description=long_description,
|
|
long_description_content_type="text/markdown",
|
|
url="https://github.com/" + module.author["github"] + "/" + module.name,
|
|
packages=setuptools.find_packages(),
|
|
classifiers=[
|
|
"Programming Language :: Python :: 3",
|
|
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
|
|
"Operating System :: OS Independent",
|
|
],
|
|
python_requires=">=3.5",
|
|
install_requires=module.requires,
|
|
package_data={'': module.resources},
|
|
include_package_data=True,
|
|
entry_points = {
|
|
"console_scripts":[
|
|
"maloja = maloja.controller:main"
|
|
]
|
|
}
|
|
)
|