File: setup.py

package info (click to toggle)
python-auditwheel 6.6.0%2Bds1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 980 kB
  • sloc: python: 6,165; ansic: 304; cpp: 66; sh: 28; makefile: 25; f90: 12
file content (19 lines) | stat: -rw-r--r-- 381 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
from __future__ import annotations

from setuptools import Extension, setup

define_macros = [("_GNU_SOURCE", None)]
libraries = ["z", "c"]

setup(
    name="testzlib",
    version="0.0.1",
    ext_modules=[
        Extension(
            "testzlib",
            sources=["testzlib.c"],
            define_macros=define_macros,
            libraries=libraries,
        ),
    ],
)