mirror of
https://github.com/mrabarnett/mrab-regex.git
synced 2025-10-05 20:02:39 +02:00
10 lines
241 B
Python
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')])],
|
|
)
|