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

39 lines
1.3 KiB
Python
Raw Normal View History

#!/usr/bin/env python
2019-12-16 21:50:15 +00:00
from distutils.core import setup
from os.path import join
with open('docs/Features.rst') as file:
long_description = file.read()
setup(
name='regex',
2019-12-16 21:50:15 +00:00
version='2019.12.9',
description='Alternative regular expression module, to replace re.',
long_description=long_description,
author='Matthew Barnett',
author_email='regex@mrabarnett.plus.com',
url='https://bitbucket.org/mrabarnett/mrab-regex',
license='Python Software Foundation License',
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',
2019-06-05 03:12:58 +01:00
'Programming Language :: Python :: 3.8',
'Topic :: Scientific/Engineering :: Information Analysis',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Text Processing',
'Topic :: Text Processing :: General',
],
2019-12-16 21:50:15 +00:00
package_dir={'regex': 'regex'},
py_modules=['regex.__init__', 'regex.regex', 'regex._regex_core',
'regex.test_regex'],
data_files=['regex._regex.pyd'],
)