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

53 lines
1.7 KiB
Python
Raw Normal View History

#!/usr/bin/env python
import os
import sys
try:
from setuptools import setup, Extension
except ImportError:
from distutils.core import setup, Extension
MAJOR, MINOR = sys.version_info[:2]
BASE_DIR = os.path.dirname(os.path.abspath(__file__))
PKG_BASE = 'regex_%i' % MAJOR
DOCS_DIR = os.path.join(BASE_DIR, 'docs')
setup(
name='regex',
version='2019.02.19',
description='Alternative regular expression module, to replace re.',
long_description=open(os.path.join(DOCS_DIR, 'Features.rst')).read(),
# PyPI does spam protection on email addresses, no need to do it here
author='Matthew Barnett',
author_email='regex@mrabarnett.plus.com',
maintainer='Matthew Barnett',
maintainer_email='regex@mrabarnett.plus.com',
url='https://bitbucket.org/mrabarnett/mrab-regex',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: Python Software Foundation License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Scientific/Engineering :: Information Analysis',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Text Processing',
'Topic :: Text Processing :: General',
],
license='Python Software Foundation License',
py_modules = ['regex', '_regex_core', 'test_regex'],
package_dir={'': PKG_BASE},
ext_modules=[Extension('_regex', [os.path.join(PKG_BASE, '_regex.c'),
os.path.join(PKG_BASE, '_regex_unicode.c')])],
)