Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
keeleliin
word_cloud_est
Commits
36d22bb4
Commit
36d22bb4
authored
Jul 28, 2013
by
Paul Nechifor
Browse files
It can now be installed as a package.
parent
96edf04f
Changes
9
Hide whitespace changes
Inline
Side-by-side
.gitignore
View file @
36d22bb4
build
query_integral_image.c
query_integral_image.so
wordcloud/
query_integral_image.c
wordcloud/
query_integral_image.so
*.pyc
*~
*.png
Makefile
deleted
100644 → 0
View file @
96edf04f
all
:
python setup.py build_ext
-i
__init__.py
deleted
100644 → 0
View file @
96edf04f
examples/more.py
View file @
36d22bb4
...
...
@@ -2,7 +2,6 @@
import
sys
import
os
sys
.
path
.
insert
(
1
,
os
.
path
.
join
(
sys
.
path
[
0
],
'..'
))
import
wordcloud
text
=
open
(
'alice.txt'
).
read
()
...
...
examples/simple.py
View file @
36d22bb4
...
...
@@ -2,7 +2,6 @@
import
sys
import
os
sys
.
path
.
insert
(
1
,
os
.
path
.
join
(
sys
.
path
[
0
],
'..'
))
import
wordcloud
text
=
open
(
'constitution.txt'
).
read
()
...
...
setup.py
View file @
36d22bb4
...
...
@@ -3,7 +3,9 @@ from distutils.core import setup
from
Cython.Build
import
cythonize
setup
(
name
=
'word_cloud'
,
ext_modules
=
cythonize
(
"*.pyx"
),
package_dir
=
{
'word_cloud'
:
'.'
}
name
=
'wordcloud'
,
ext_modules
=
cythonize
(
"wordcloud/query_integral_image.pyx"
),
url
=
'https://github.com/paul-nechifor/word_cloud'
,
packages
=
[
'wordcloud'
],
package_data
=
{
'wordcloud'
:
[
'stopwords'
]}
)
wordcloud.py
→
wordcloud
/__init__
.py
View file @
36d22bb4
File moved
query_integral_image.pyx
→
wordcloud/
query_integral_image.pyx
View file @
36d22bb4
File moved
stopwords
→
wordcloud/
stopwords
View file @
36d22bb4
File moved
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment