-
-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathsetup.py
More file actions
16 lines (15 loc) · 625 Bytes
/
setup.py
File metadata and controls
16 lines (15 loc) · 625 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
from setuptools import setup
from setuptools import find_packages
setup(name = "grave",
version = "0.0.3",
description = "Dead simple graph visualization",
long_description = "Grave is a Graph Visualization Package "\
"combining ideas from Matplotlib and NetworkX",
url = "http://github.com/networkx/grave",
author = "Grave Developers",
author_email = "networkx-discuss@googlegroups.com",
license = "BSD",
packages = find_packages(),
tests_require = ['pytest', 'pytest-runner'],
setup_requires = ['pytest-runner'],
zip_safe = False)