mirror of
https://github.com/krateng/maloja.git
synced 2023-08-10 21:12:55 +03:00
36 lines
1.0 KiB
Python
36 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="malojaserver",
|
|
version=".".join(str(n) for n in module.version),
|
|
author=module.author["name"],
|
|
author_email=module.author["email"],
|
|
description=module.desc,
|
|
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":[
|
|
cmd + " = " + module.name + "." + module.commands[cmd]
|
|
for cmd in module.commands
|
|
]
|
|
}
|
|
)
|