mirror of
https://github.com/yavook/kiwi-scp.git
synced 2024-11-22 12:53:00 +00:00
23 lines
605 B
Python
23 lines
605 B
Python
from setuptools import setup, find_packages
|
|
|
|
setup(
|
|
name="kiwi_scp",
|
|
version="0.1.6",
|
|
packages=find_packages(),
|
|
author="LDericher",
|
|
author_email="ldericher@gmx.de",
|
|
setup_requires="setuptools-pipfile",
|
|
use_pipfile=True,
|
|
entry_points={
|
|
"console_scripts": [
|
|
"kiwi = kiwi_scp.scripts.kiwi:main"
|
|
],
|
|
},
|
|
data_files=[
|
|
("", ["data/etc/kiwi_help.txt"])
|
|
],
|
|
include_package_data=True,
|
|
license="LICENSE",
|
|
description="kiwi is the simple tool for managing container servers.",
|
|
long_description=open("README.md").read(),
|
|
)
|