mirror of
https://github.com/krateng/maloja.git
synced 2023-08-10 21:12:55 +03:00
Refactored into Python Package
This commit is contained in:
34
setup.py
Normal file
34
setup.py
Normal file
@@ -0,0 +1,34 @@
|
||||
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"
|
||||
]
|
||||
}
|
||||
)
|
||||
Reference in New Issue
Block a user