1
1
mirror of https://github.com/mrabarnett/mrab-regex.git synced 2025-10-05 20:02:39 +02:00

Further changes for setup.py.

This commit is contained in:
mrab
2019-12-17 00:59:28 +00:00
parent 2678e508d4
commit b9509797f0
3 changed files with 14 additions and 0 deletions

8
MANIFEST.IN Normal file
View File

@@ -0,0 +1,8 @@
include regex_2/*.c
include regex_2/*.h
include regex_2/*.py
include regex_3/*.c
include regex_3/*.h
include regex_3/*.py
include docs/*.*
include tools/*.py

3
regex_2/__init__.py Normal file
View File

@@ -0,0 +1,3 @@
from .regex import *
from . import regex
__all__ = regex.__all__

3
regex_3/__init__.py Normal file
View File

@@ -0,0 +1,3 @@
from .regex import *
from . import regex
__all__ = regex.__all__