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