-
Notifications
You must be signed in to change notification settings - Fork 14
/
setup.py
42 lines (35 loc) · 1.12 KB
/
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
29
30
31
32
33
34
35
36
37
38
39
40
41
from setuptools import setup, find_packages
import io,os,sys
def tag():
return os.getenv("version")
def read_text_lines(fname):
with io.open(fname) as fd:
lines=fd.readlines()
return ''.join(lines)
setup(
name="word_cloud",
version=tag(),
packages=find_packages(),
description='Word cloud of data scientist',
long_description=open("README.md").read(),
classifiers=[
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Scientific/Engineering :: Information Analysis',
'Topic :: Text Processing :: Linguistic'
],
author='kavgan',
author_email='ganesan.kavita@gmail.com',
license='Apache',
url='https://github.com/kavgan/word_cloud',
download_url='https://github.com/kavgan/word_cloud/archive/{0}.tar.gz'.format(tag()),
keywords=['word cloud','visualization','text mining'],
install_requires=[
'scikit-learn>=0.19.1',
'pandas>=0.20.3'
],
include_package_data=True,
entry_points={
}
)