delete unnecesary files

This commit is contained in:
wcolmenares 2019-05-15 18:53:34 -04:00
parent 64f9e32e8c
commit d4d03d6add
3 changed files with 0 additions and 45 deletions

View File

@ -1,9 +0,0 @@
LICENSE
Copyright
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

View File

@ -1,2 +0,0 @@
[metadata]
description-file = README.md

View File

@ -1,34 +0,0 @@
from setuptools import setup
def readme():
with open('README.md') as f:
README = f.read()
return README
setup(
name='ungleich-cli',
version='1.0.0',
description="A Python package for ungleich dns administration.",
long_description=readme(),
long_description_content_type="text/markdown",
author="William Colmenares",
author_email="colmenares.william@gmail.com",
license="MIT",
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
],
py_modules=['ungleichcli'],
install_requires=[
'requests',
],
entry_points={
"console_scripts": [
"ungleich-cli=ungleichcli:cli"
]
},
)