From 991d30c2e1d4fc377350534f0805e331b8e2cc3f Mon Sep 17 00:00:00 2001 From: Jannis Konrad <kabel42@gmail.com> Date: Tue, 3 Sep 2019 22:46:05 +0200 Subject: [PATCH] update README with Repo URLs and rename to README.md --- README => README.md | 3 +++ setup.py | 5 +++++ 2 files changed, 8 insertions(+) rename README => README.md (71%) diff --git a/README b/README.md similarity index 71% rename from README rename to README.md index 755e42f..83a3f81 100644 --- a/README +++ b/README.md @@ -6,3 +6,6 @@ All other calls are passt to the underlying socket. For more info of tinydtls see https://projects.eclipse.org/projects/iot.tinydtls This Code was created at the [Multimedia Communication Laboratory](http://mc-lab.de) of the [Bonn-Rhein-Sieg University of Applied Sciences](http://h-brs.de) + +The Repo is hostet in our [GitLab](https://git.fslab.de/jkonra2m/tinydtls-cython) +There is now also a mirror on [GitHub](https://github.com/kabel42/DTLSSocket) diff --git a/setup.py b/setup.py index e36b29f..5e46f9c 100644 --- a/setup.py +++ b/setup.py @@ -21,10 +21,15 @@ class prepare_tinydtls(build_ext): run_command(command) build_ext.run(self) +with open("README.md", "r") as fh: + long_description = fh.read() + setup( name="DTLSSocket", version='0.1.10', description = "DTLSSocket is a cython wrapper for tinydtls with a Socket like interface", + long_description=long_description, + long_description_content_type="text/markdown", author = "Jannis Konrad", author_email= "Jannis.Konrad@h-brs.de", url = "https://git.fslab.de/jkonra2m/tinydtls-cython", -- GitLab