From 54b5894b4cd7cd45ec3be71fc712fb7257d93d61 Mon Sep 17 00:00:00 2001 From: Fulgen301 Date: Tue, 22 Aug 2017 23:18:02 +0200 Subject: Make pycrctrl ready for PyPI --- LICENSE | 13 ------------- LICENSE.txt | 13 +++++++++++++ README.md | 3 +++ requirements.txt | 1 + setup.cfg | 2 ++ setup.py | 16 ++++++++++++++++ 6 files changed, 35 insertions(+), 13 deletions(-) delete mode 100644 LICENSE create mode 100644 LICENSE.txt create mode 100644 requirements.txt create mode 100644 setup.cfg create mode 100755 setup.py diff --git a/LICENSE b/LICENSE deleted file mode 100644 index bd7b08c..0000000 --- a/LICENSE +++ /dev/null @@ -1,13 +0,0 @@ -Copyright (c) 2017, George Tokmaji - -Permission to use, copy, modify, and/or distribute this software for any -purpose with or without fee is hereby granted, provided that the above -copyright notice and this permission notice appear in all copies. - -THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES -WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF -MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR -ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES -WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN -ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF -OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. diff --git a/LICENSE.txt b/LICENSE.txt new file mode 100644 index 0000000..bd7b08c --- /dev/null +++ b/LICENSE.txt @@ -0,0 +1,13 @@ +Copyright (c) 2017, George Tokmaji + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR +ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF +OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. diff --git a/README.md b/README.md index e22e9ed..610d1a7 100644 --- a/README.md +++ b/README.md @@ -2,3 +2,6 @@ [![Build Status](https://travis-ci.org/Fulgen301/pycrctrl.svg?branch=master)](https://travis-ci.org/Fulgen301/pycrctrl) PyCRCtrl is a control for the dedicated server engine of clonk. + +=== Dependencies +* limnoria diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..69de047 --- /dev/null +++ b/requirements.txt @@ -0,0 +1 @@ +limnoria diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 0000000..b88034e --- /dev/null +++ b/setup.cfg @@ -0,0 +1,2 @@ +[metadata] +description-file = README.md diff --git a/setup.py b/setup.py new file mode 100755 index 0000000..36eb5ad --- /dev/null +++ b/setup.py @@ -0,0 +1,16 @@ +from setuptools import setup + +setup( + name = "pycrctrl", + py_modules = ["pycrctrl"], + version = "0.1", + description = "Controller for clonk's dedicated server", + author = "George Tokmaji", + author_email = "tokmajigeorge@gmail.com", + url = "https://github.com/Fulgen301/pycrctrl", + download_url = "https://github.com/Fulgen301/pycrctrl/archive/0.1.tar.gz", + keywords = ["clonk", "openclonk"], + license = "ISC", + requires = ["limnoria"], + install_requires = ["limnoria"] + ) -- cgit v1.2.3-54-g00ecf