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-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-05-28 18:02:12 +00:00
|
|
|
README_contents = open(os.path.join(current_dir, 'README.md')).read()
|
2013-10-28 23:26:44 +00:00
|
|
|
doclines = README_contents.split("\n")
|
2015-05-12 16:30:01 +00:00
|
|
|
dependencies = ['ftfy >= 4', 'msgpack-python', 'langcodes']
|
|
|
|
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-05-28 18:02:12 +00:00
|
|
|
version='1.0b2',
|
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,
|
2013-10-28 23:26:44 +00:00
|
|
|
)
|