mirror of
https://github.com/rspeer/wordfreq.git
synced 2024-12-23 17:31:41 +00:00
eb9add9d71
Former-commit-id: 39f01b0485
14 lines
405 B
Python
Executable File
14 lines
405 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'],
|
|
install_requires=['msgpack-python', 'pycld2']
|
|
)
|