-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (22 loc) · 706 Bytes
/
setup.py
File metadata and controls
23 lines (22 loc) · 706 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from distutils.core import setup
setup(
name='WikiNetworking',
version='0.1.3',
packages=['wikinetworking',],
description='Utilities for graphing Wiki articles',
author='Joon-Yee Chuah',
author_email='jchuah@tacc.utexas.edu',
url='https://github.com/jchuahtacc/WikiNetworking',
download_url='https://github.com/jchuahtacc/WikiNetworking/archive/0.1.tar.gz',
keywords=['graphing', 'wiki', 'jupyter'],
classifiers=[],
install_requires=[
"jupyter",
"networkx",
"matplotlib",
"mpld3",
"pyquery"
],
license='MIT License',
long_description='Utilities for crawling and text mining a wiki and representing links as a node graph',
)