-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
27 lines (25 loc) · 845 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
from setuptools import setup
import codecs
with codecs.open('README.rst', 'r', 'utf-8') as f:
readme = f.read()
setup(
name='triegex',
url='https://github.com/ZhukovAlexander/triegex',
author='Alexander Zhukov',
author_email='[email protected]',
description='Trie-ized regular expressions in python',
long_description=readme,
keywords='python regular expressions trie',
use_scm_version=True,
setup_requires=['setuptools_scm'],
packages=['triegex'],
zip_safe=True,
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)