From 053d5d17c38fce2c155211f8aa9ca46c7164f2bf Mon Sep 17 00:00:00 2001 From: Jannis Konrad <kabel42@gmail.com> Date: Sat, 16 Dec 2017 13:55:26 +0100 Subject: [PATCH] add pyproject.toml --- pyproject.toml | 2 ++ setup.py | 5 +++-- 2 files changed, 5 insertions(+), 2 deletions(-) create mode 100644 pyproject.toml diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..bc2be67 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,2 @@ +[build-system] +requires = ["setuptools", "wheel", "Cython"] diff --git a/setup.py b/setup.py index ed4be6e..450ec4f 100644 --- a/setup.py +++ b/setup.py @@ -23,14 +23,15 @@ class prepare_tinydtls(build_ext): setup( name="DTLSSocket", - version='0.1.6', + version='0.1.7', 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.DTLSSocket"], cmdclass = {"build_ext": prepare_tinydtls}, - setup_requires = [ "cython", ], + setup_requires = ['setuptools>=18.0','Cython'], + install_requires = ['Cython'], ext_modules = [Extension("DTLSSocket.dtls", [ "DTLSSocket/dtls.pyx", -- GitLab