-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
29 lines (27 loc) · 1.04 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
import sys
from distutils.core import setup
if sys.version_info[0] < 3:
version = str(sys.version_info[0]) + '.' + str(sys.version_info[1])
sys.exit("""
Sorry! Your Python version is %s, but macro-etym requires at least
Python 3. Please upgrade your Python installation, or try using pip3
instead of pip.""" % version)
setup(
name = 'macroetym',
packages = ['macroetym'], # this must be the same as the name above
version = '0.1.3',
description = 'A tool for macro-etymological textual analysis.',
author = 'Jonathan Reeve',
author_email = '[email protected]',
url = 'https://github.com/JonathanReeve/macro-etym',
download_url = 'https://github.com/JonathanReeve/macro-etym/tarball/0.1.2',
install_requires = ['Click', 'nltk', 'pycountry', 'pandas',
'matplotlib'],
include_package_data = True,
package_data = {'macroetym': ['etymwm-smaller.tsv']},
keywords = ['nlp', 'text-analysis', 'etymology'],
classifiers = [],
entry_points='''
[console_scripts]
macroetym = macroetym.main:cli''',
)