File: pyproject.toml.in

package info (click to toggle)
libdumbnet 1.18.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 4,084 kB
  • sloc: ansic: 11,563; sh: 4,732; python: 226; makefile: 92
file content (22 lines) | stat: -rw-r--r-- 562 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
[build-system]
requires = ["setuptools", "wheel", "Cython"]
build-backend = "setuptools.build_meta"

[project]
name = "dnet"
version = "@VERSION@"
description = "low-level networking library"
authors = [
    {name = "Oliver Falk", email = "oliver@linux-kernel.at"}
]
urls = {Homepage = "https://github.com/ofalk/libdnet/"}

[tool.setuptools]
packages = []

[[tool.setuptools.ext-modules]]
name = "dnet"
sources = ["dnet.pyx"]
include-dirs = ["../include"@WIN32_INCLUDES@]
library-dirs = ["../src/.libs"@WIN32_LIBRARY_DIRS@]
libraries = ["dnet"@WIN32_LIBRARIES@]