2013-10-28 23:26:44 +00:00
|
|
|
#!/usr/bin/env python
|
2013-10-29 16:43:41 +00:00
|
|
|
from setuptools import setup
|
2015-05-13 08:09:34 +00:00
|
|
|
import sys
|
2013-10-29 16:43:41 +00:00
|
|
|
import os
|
2013-10-28 23:26:44 +00:00
|
|
|
|
2015-05-28 18:05:11 +00:00
|
|
|
if sys.version_info[0] < 3:
|
|
|
|
print("Sorry, but wordfreq no longer supports Python 2.")
|
|
|
|
sys.exit(1)
|
|
|
|
|
|
|
|
|
2015-05-08 16:57:22 +00:00
|
|
|
classifiers = [
|
2013-10-28 23:26:44 +00:00
|
|
|
'Intended Audience :: Developers',
|
|
|
|
'Intended Audience :: Science/Research',
|
|
|
|
'License :: OSI Approved :: MIT License',
|
|
|
|
'Natural Language :: English',
|
|
|
|
'Operating System :: MacOS',
|
|
|
|
'Operating System :: Microsoft :: Windows',
|
|
|
|
'Operating System :: POSIX',
|
|
|
|
'Operating System :: Unix',
|
|
|
|
'Programming Language :: Python :: 3',
|
|
|
|
'Topic :: Scientific/Engineering',
|
|
|
|
'Topic :: Software Development',
|
2015-05-08 16:57:22 +00:00
|
|
|
'Topic :: Text Processing :: Linguistic',
|
|
|
|
]
|
2013-10-28 23:26:44 +00:00
|
|
|
|
2015-05-12 16:24:18 +00:00
|
|
|
current_dir = os.path.dirname(__file__)
|
2015-12-23 20:49:13 +00:00
|
|
|
README_contents = open(os.path.join(current_dir, 'README.md'),
|
|
|
|
encoding='utf-8').read()
|
2013-10-28 23:26:44 +00:00
|
|
|
doclines = README_contents.split("\n")
|
2015-08-24 20:24:49 +00:00
|
|
|
dependencies = ['ftfy >= 4', 'msgpack-python', 'langcodes', 'regex >= 2015']
|
2015-05-12 16:30:01 +00:00
|
|
|
if sys.version_info < (3, 4):
|
|
|
|
dependencies.append('pathlib')
|
2013-10-28 23:26:44 +00:00
|
|
|
|
2013-10-29 20:44:13 +00:00
|
|
|
|
2013-10-28 23:26:44 +00:00
|
|
|
setup(
|
|
|
|
name="wordfreq",
|
2015-11-30 22:06:39 +00:00
|
|
|
version='1.3',
|
2013-10-28 23:26:44 +00:00
|
|
|
maintainer='Luminoso Technologies, Inc.',
|
2015-05-08 16:57:22 +00:00
|
|
|
maintainer_email='info@luminoso.com',
|
2013-10-28 23:26:44 +00:00
|
|
|
url='http://github.com/LuminosoInsight/wordfreq/',
|
|
|
|
license = "MIT",
|
|
|
|
platforms = ["any"],
|
|
|
|
description = doclines[0],
|
|
|
|
classifiers = classifiers,
|
|
|
|
long_description = "\n".join(doclines[2:]),
|
|
|
|
packages=['wordfreq'],
|
2015-05-11 22:45:47 +00:00
|
|
|
include_package_data=True,
|
2015-05-12 16:30:01 +00:00
|
|
|
install_requires=dependencies,
|
2015-07-02 15:28:45 +00:00
|
|
|
|
|
|
|
# mecab-python3 is required for looking up Japanese word frequencies. In
|
|
|
|
# turn, it depends on libmecab-dev being installed on the system. It's not
|
|
|
|
# listed under 'install_requires' because wordfreq should be usable in
|
|
|
|
# other languages without it.
|
2015-09-05 07:16:56 +00:00
|
|
|
#
|
|
|
|
# Similarly, jieba is required for Chinese word frequencies.
|
2015-07-02 21:11:51 +00:00
|
|
|
extras_require={
|
2015-09-05 07:16:56 +00:00
|
|
|
'mecab': 'mecab-python3',
|
|
|
|
'jieba': 'jieba'
|
2015-07-02 21:11:51 +00:00
|
|
|
},
|
2015-09-05 07:16:56 +00:00
|
|
|
tests_require=['mecab-python3', 'jieba'],
|
2013-10-28 23:26:44 +00:00
|
|
|
)
|