diff --git a/README.md b/README.md new file mode 100644 index 0000000000000000000000000000000000000000..6f0d206b25c97cde20cd4da112a7ec9b13d59453 --- /dev/null +++ b/README.md @@ -0,0 +1 @@ +This is a cython wrapper for tinydtls, for more info see https://projects.eclipse.org/projects/iot.tinydtls diff --git a/setup.py b/setup.py index 7ed1aee19c8507ff6dcc7cd88e54f0941d7a90b4..499f13414d6fd4fa5dc9ac0ca02f32dbefdae839 100644 --- a/setup.py +++ b/setup.py @@ -34,7 +34,11 @@ cy_build = cythonize([ setup( name="DTLSSocket", + version='0.1', description = "DTLSSocket is a cython wrapper for tinydtls with a Socket like interface", + author = "Jannis Konrad", + author_email= "Jannis.Konrad@h-brs.de", + url = "https://git.fslab.de/jkonra2m/tinydtls-cython" py_modules = [ "DTLSSocket", ], cmdclass = {"build_ext": prepare_tinydtls}, ext_modules = cy_build,