Skip to content
Snippets Groups Projects
Commit 053d5d17 authored by Jannis Konrad's avatar Jannis Konrad
Browse files

add pyproject.toml

parent 5ef5ec29
No related branches found
No related tags found
No related merge requests found
[build-system]
requires = ["setuptools", "wheel", "Cython"]
...@@ -23,14 +23,15 @@ class prepare_tinydtls(build_ext): ...@@ -23,14 +23,15 @@ class prepare_tinydtls(build_ext):
setup( setup(
name="DTLSSocket", name="DTLSSocket",
version='0.1.6', version='0.1.7',
description = "DTLSSocket is a cython wrapper for tinydtls with a Socket like interface", description = "DTLSSocket is a cython wrapper for tinydtls with a Socket like interface",
author = "Jannis Konrad", author = "Jannis Konrad",
author_email= "Jannis.Konrad@h-brs.de", author_email= "Jannis.Konrad@h-brs.de",
url = "https://git.fslab.de/jkonra2m/tinydtls-cython", url = "https://git.fslab.de/jkonra2m/tinydtls-cython",
py_modules = [ "DTLSSocket.DTLSSocket"], py_modules = [ "DTLSSocket.DTLSSocket"],
cmdclass = {"build_ext": prepare_tinydtls}, cmdclass = {"build_ext": prepare_tinydtls},
setup_requires = [ "cython", ], setup_requires = ['setuptools>=18.0','Cython'],
install_requires = ['Cython'],
ext_modules = [Extension("DTLSSocket.dtls", ext_modules = [Extension("DTLSSocket.dtls",
[ [
"DTLSSocket/dtls.pyx", "DTLSSocket/dtls.pyx",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment