forked from amueller/word_cloud
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
26 lines (24 loc) · 942 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
import io
from setuptools import setup
from setuptools.extension import Extension
import versioneer
with io.open('README.md', encoding='utf_8') as fp:
readme = fp.read()
setup(
author="Andreas Mueller",
author_email="[email protected]",
name='wordcloud',
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
url='https://github.com/amueller/word_cloud',
description='A little word cloud generator',
long_description=readme,
long_description_content_type='text/markdown; charset=UTF-8',
license='MIT',
install_requires=['numpy>=1.6.1', 'pillow', 'matplotlib'],
ext_modules=[Extension("wordcloud.query_integral_image",
["wordcloud/query_integral_image.c"])],
entry_points={'console_scripts': ['wordcloud_cli=wordcloud.__main__:main']},
packages=['wordcloud'],
package_data={'wordcloud': ['stopwords', 'DroidSansMono.ttf']}
)