2021-09-28 10:17:53 +00:00
|
|
|
from setuptools import setup, find_packages
|
|
|
|
|
|
|
|
setup(
|
|
|
|
name="kiwi_scp",
|
|
|
|
version="0.1.6",
|
2021-09-28 11:23:15 +00:00
|
|
|
description="kiwi is the simple tool for managing container servers.",
|
|
|
|
long_description=open("README.md").read(),
|
2021-09-28 10:17:53 +00:00
|
|
|
packages=find_packages(),
|
2021-09-28 11:23:15 +00:00
|
|
|
license="LICENSE",
|
|
|
|
|
2021-09-28 10:17:53 +00:00
|
|
|
author="LDericher",
|
|
|
|
author_email="ldericher@gmx.de",
|
2021-09-28 11:23:15 +00:00
|
|
|
|
2021-09-28 10:17:53 +00:00
|
|
|
setup_requires="setuptools-pipfile",
|
|
|
|
use_pipfile=True,
|
2021-09-28 11:23:15 +00:00
|
|
|
|
2021-09-28 10:17:53 +00:00
|
|
|
entry_points={
|
|
|
|
"console_scripts": [
|
|
|
|
"kiwi = kiwi_scp.scripts.kiwi:main"
|
|
|
|
],
|
|
|
|
},
|
|
|
|
data_files=[
|
2021-09-28 11:23:15 +00:00
|
|
|
('./kiwi_scp/', [
|
|
|
|
"*.txt",
|
|
|
|
"*.yml",
|
|
|
|
"*.Dockerfile",
|
|
|
|
"data/etc/version_tag",
|
|
|
|
])
|
2021-09-28 10:17:53 +00:00
|
|
|
],
|
|
|
|
include_package_data=True,
|
|
|
|
)
|