forked from craigmbooth/nix-visualize
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (26 loc) · 781 Bytes
/
setup.py
File metadata and controls
27 lines (26 loc) · 781 Bytes
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
import os
import setuptools
import sys
PACKAGE_NAME = "nix_visualize"
VERSION = "1.0.4"
setuptools.setup(
name=PACKAGE_NAME,
version=VERSION,
packages=[PACKAGE_NAME],
description="CLI to automate generation of pretty Nix dependency trees",
author="Craig Booth",
author_email="craigmbooth@gmail.com",
url="https://github.com/craigmbooth/nix-dependency-visualizer",
download_url = "https://github.com/craigmbooth/nix-dependency-visualizer/tarball/"+VERSION,
keywords=["nix", "matplotlib"],
classifiers=[],
install_requires=[
"matplotlib>=1.5",
"networkx>=1.11",
"pygraphviz>=1.3"
],
data_files = [],
entry_points={"console_scripts": [
"nix-visualize=nix_visualize.visualize_tree:main"
]}
)