remove legacy setup.py
This commit is contained in:
parent
cb1fabebc3
commit
5dbb6105ee
1 changed files with 0 additions and 31 deletions
31
setup.py
31
setup.py
|
@ -1,31 +0,0 @@
|
||||||
from setuptools import setup, find_packages
|
|
||||||
|
|
||||||
setup(
|
|
||||||
name="kiwi_scp",
|
|
||||||
version="0.1.6",
|
|
||||||
description="kiwi is the simple tool for managing container servers.",
|
|
||||||
long_description=open("README.md").read(),
|
|
||||||
packages=find_packages(),
|
|
||||||
license="LICENSE",
|
|
||||||
|
|
||||||
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=[
|
|
||||||
('./kiwi_scp/', [
|
|
||||||
"*.txt",
|
|
||||||
"*.yml",
|
|
||||||
"*.Dockerfile",
|
|
||||||
"data/etc/version_tag",
|
|
||||||
])
|
|
||||||
],
|
|
||||||
include_package_data=True,
|
|
||||||
)
|
|
Loading…
Reference in a new issue