-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
31 lines (29 loc) · 1.09 KB
/
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
28
29
30
31
from setuptools import setup, find_packages
readme = open('README.md').read()
requirements = open('requirements.txt').read().splitlines()
setup(
name='spacy-pattern-builder',
version='0.0.7',
description='Reverse engineer patterns for use with the SpaCy DependencyTreeMatcher',
long_description=readme,
long_description_content_type='text/markdown',
author='Nick Morley',
author_email='[email protected]',
url='https://github.com/cyclecycle/spacy-pattern-builder',
packages=find_packages(),
package_dir={'spacy-pattern-builder': 'spacy-pattern-builder'},
include_package_data=True,
install_requires=requirements,
license='MIT',
zip_safe=False,
keywords='spacy-pattern-builder',
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: Implementation :: PyPy',
],
)