mirror of
https://github.com/rspeer/wordfreq.git
synced 2024-12-26 02:28:50 +00:00
5787b6bb73
- more build steps for Wikipedia - rename 'tokenize_twitter' to 'pretokenize_twitter' to indicate that the results are preliminary
20 lines
674 B
Python
Executable File
20 lines
674 B
Python
Executable File
from setuptools import setup
|
|
|
|
setup(
|
|
name="wordfreq_builder",
|
|
version='0.1',
|
|
maintainer='Luminoso Technologies, Inc.',
|
|
maintainer_email='info@luminoso.com',
|
|
url='http://github.com/LuminosoInsight/wordfreq_builder',
|
|
platforms=["any"],
|
|
description="Turns raw data into word frequency lists",
|
|
packages=['wordfreq_builder'],
|
|
entry_points={
|
|
'console_scripts': [
|
|
'wordfreq-pretokenize-twitter = wordfreq_builder.cli.pretokenize_twitter:main',
|
|
'wordfreq-tokenize-wikipedia = wordfreq_builder.cli.tokenize_wikipedia:main',
|
|
'wordfreq-build-deps = wordfreq_builder.cli.build_deps:main'
|
|
]
|
|
}
|
|
)
|