-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathsetup.py
25 lines (23 loc) · 894 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 distutils.core import setup
from sys import version_info as ver
if ver[0] < 3:
version = str(ver[0]) + '.' + str(ver[1])
sys.exit("""
Error: your Python version is %s, but text-matcher requires at least
Python 3. Please upgrade your Python installation, or try using pip3
instead of pip.""" % version)
setup(
name = 'text-matcher',
packages = ['text_matcher'],
version = '0.1.7',
description = 'A simple text reuse detection CLI tool.',
author = 'Jonathan Reeve',
author_email = '[email protected]',
url = 'https://github.com/JonathanReeve/text-matcher',
download_url = 'https://github.com/JonathanReeve/text-matcher/tarball/0.1.6',
install_requires = ['Click', 'nltk', 'termcolor'],
keywords = ['NLP', 'text', 'text reuse'],
entry_points='''
[console_scripts]
text-matcher = text_matcher.text_matcher:cli''',
)