-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
49 lines (47 loc) · 1.51 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
42
43
44
45
46
47
48
# chardet's setup.py
from setuptools import setup,find_packages
setup(
name = "topogram",
packages = find_packages(exclude=['tests']) ,
version = "0.0.1a", # [major].[minor].[release]
description = "Network Analysis",
author = "Clement Renaud",
author_email = "[email protected]",
url = "http://topogram.io",
download_url = "http://github.com/topogram/topogram",
include_package_data=True,
keywords = ["network", "visualization", "NLP"],
entry_points={
'console_scripts': [
# 'topo-test = topogram.cli:main',
'topo-viz = topogram.cli:topo_viz_main',
'topo-proc = topogram.cli:topo_proc_main',
'topo-corpus = topogram.cli:topo_corpus_main',
],
},
classifiers = [
"Programming Language :: Python",
"Environment :: Other Environment",
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Text Processing :: Linguistic",
],
long_description = open('README.md').read(),
install_requires=[
'networkx',
"jieba",
"chardet",
"python-dateutil",
"pymongo",
"nltk",
"textblob",
"textblob-fr"
],
setup_requires=[
"textblob"
],
test_suite='tests'
)