-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
42 lines (35 loc) · 1.34 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
32
33
34
35
36
37
38
39
40
41
42
#!/usr/bin/env python
from setuptools import setup
def readme():
with open('README.rst', 'r', encoding='utf-8') as f:
return f.read()
def requirements():
with open('requirements.txt', 'r') as fh:
return [line.strip() for line in fh]
setup(name='match',
version='0.3.2',
description=('Match tokenized words and phrases within the original, untokenized, often messy, text.'),
long_description=readme(),
keywords='tokenization',
url='https://github.com/EducationalTestingService/match',
author='Diane Napolitano',
author_email='[email protected]',
maintainer='Tamar Lavee',
maintainer_email='[email protected]',
classifiers=[
'License :: OSI Approved :: Apache Software License',
'Topic :: Text Processing',
'Programming Language :: Python',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Operating System :: Unix',
'Operating System :: MacOS',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
],
packages=['match'],
install_requires=requirements()
)