File: setup.py

package info (click to toggle)
patiencediff 0.2.13-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 264 kB
  • sloc: ansic: 922; python: 711; makefile: 6; sh: 1
file content (15 lines) | stat: -rwxr-xr-x 304 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/usr/bin/env python3
# encoding: utf-8

import os

from setuptools import Extension, setup

ext_modules = [
    Extension(
        'patiencediff._patiencediff_c',
        ['patiencediff/_patiencediff_c.c'],
        optional=os.environ.get('CIBUILDWHEEL', '0') != '1')]


setup(ext_modules=ext_modules)