2019-11-24 23:47:03 +03:00
|
|
|
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(
|
2019-12-10 15:53:05 +03:00
|
|
|
name="malojaserver",
|
2019-11-24 23:47:03 +03:00
|
|
|
version=".".join(str(n) for n in module.version),
|
|
|
|
author=module.author["name"],
|
|
|
|
author_email=module.author["email"],
|
2019-12-03 18:23:01 +03:00
|
|
|
description=module.desc,
|
2019-11-24 23:47:03 +03:00
|
|
|
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":[
|
2019-11-27 01:08:08 +03:00
|
|
|
cmd + " = " + module.name + "." + module.commands[cmd]
|
|
|
|
for cmd in module.commands
|
2019-11-24 23:47:03 +03:00
|
|
|
]
|
|
|
|
}
|
|
|
|
)
|