-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (22 loc) · 833 Bytes
/
setup.py
File metadata and controls
23 lines (22 loc) · 833 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
try:
from setuptools import setup, find_packages
except ImportError:
import distribute_setup
distribute_setup.use_setuptools()
from setuptools import setup, find_packages
setup(
name='pyh3',
version='1.1',
author='Songxiao Zhang, Adam Kelleher',
author_email='ee08b397@gmail.com, adam.kelleher@buzzfeed.com',
description='Pure Python implementation of h3 for visualizing LARGE graphs',
long_description='Implements O(|V|) graph layout in hyperbolic space for visualizing very large ( > 1M nodes ) graphs.',
keywords='walrus h3 graph visualization graphviz dot graphml network rendering render layout hyperbolic',
packages=['h3'],
install_requires=[
'python-igraph==0.7',
'numpy==1.9.2',
'matplotlib==1.4.3',
],
url='http://www.github.com/buzzfeed/pyh3',
)