mirror of
https://github.com/rspeer/wordfreq.git
synced 2024-12-23 17:31:41 +00:00
969a024dea
Former-commit-id: 75a4a92110
14 lines
418 B
Python
Executable File
14 lines
418 B
Python
Executable File
from setuptools import setup
|
|
|
|
setup(
|
|
name="wordfreq_builder",
|
|
version='0.2',
|
|
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'],
|
|
install_requires=['msgpack-python', 'pycld2', 'langcodes']
|
|
)
|