-
Notifications
You must be signed in to change notification settings - Fork 13
/
setup.py
25 lines (24 loc) · 986 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
from setuptools import setup
setup(name='grammaregex',
version='0.1.3',
description='grammaregex - library for matching and finding tree sentence in regex-like way',
long_description='This library allows you to find single tokens in sentences or match sentence by grammar regex-like expressions.',
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.5',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Intended Audience :: Science/Research',
],
keywords='nlp text mining text extraction',
url='https://github.com/krzysiekfonal/grammaregex',
author='Krzysztof Fonal',
author_email='[email protected]',
license='MIT',
packages=['grammaregex'],
install_requires=[
'spacy',
],
test_suite='nose.collector',
tests_require=['nose'],
zip_safe=True)