1
1
mirror of https://github.com/mrabarnett/mrab-regex.git synced 2025-10-06 16:12:40 +02:00
Files
mrab-regex/setup.py

10 lines
241 B
Python
Raw Normal View History

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