1
1
mirror of https://github.com/mrabarnett/mrab-regex.git synced 2025-10-05 20:02:39 +02:00
Files
mrab-regex/setup.py
2024-11-07 16:52:17 +00:00

10 lines
241 B
Python

#!/usr/bin/env python3
# -*- coding: utf-8 -*-
from setuptools import setup, Extension
from os.path import join
setup(
ext_modules=[Extension('regex._regex', [join('regex_3', '_regex.c'),
join('regex_3', '_regex_unicode.c')])],
)