-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
28 lines (26 loc) · 827 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
27
28
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
setup(name='command_history_wordcloud',
version='1.1.1',
description='Generates word cloud images for frequency of commands usage on your shell',
author='Fumihiko Hata',
author_email='hatappo44+command_history_wordcloud@gmail.com',
url='https://github.com/hatappo/command_history_wordcloud',
packages=find_packages(),
include_package_data=True,
keywords=['wordcloud'],
license='MIT License',
install_requires=[
'Django',
'image',
'numpy',
'Pillow',
'wordcloud',
],
entry_points={
"console_scripts": [
"chwc=command_history_wordcloud.command_history_wordcloud:main",
],
}
)