Skip to content

Commit 5349a3d

Browse files
author
Director of Analytics
committed
changed format to real python package
1 parent 2af8892 commit 5349a3d

File tree

174 files changed

+9578
-2
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

174 files changed

+9578
-2
lines changed

MANIFEST

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# file GENERATED by distutils, do NOT edit
2+
setup.py
3+
bashplotlib/__init__.py
4+
bashplotlib/histogram.py
5+
bashplotlib/scatterplot.py

bashplotlib.egg-info/PKG-INFO

Lines changed: 130 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,130 @@
1+
Metadata-Version: 1.0
2+
Name: bashplotlib
3+
Version: 0.1.0
4+
Summary: UNKNOWN
5+
Home-page: UNKNOWN
6+
Author: UNKNOWN
7+
Author-email: UNKNOWN
8+
License: MIT
9+
Description: #bashplotlib
10+
*matplotlib's distant cousin from the command line*
11+
12+
<pre>python bin/scatter.py -f data/texas.txt --pch .</pre>
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+
<pre>python bin/hist.py data/exp.txt</pre>
38+
461 | o
39+
438 | o
40+
415 | o
41+
392 | o
42+
369 | o
43+
346 | o
44+
323 | o
45+
300 | o
46+
277 | o
47+
254 | o o
48+
231 | o o
49+
208 | o o
50+
185 | o o
51+
162 | o o
52+
139 | o o
53+
116 | o o o
54+
93 | o o o
55+
70 | o o o o
56+
47 | o o o o
57+
24 | o o o o o
58+
1 | o o o o o o o o
59+
------------------
60+
61+
62+
<pre>python bin/scatter.py -x data/x_test.txt -y data/y_test.txt</pre>
63+
--------------------------------------------
64+
| x | |
65+
| | |
66+
| | x |
67+
| | |
68+
| | |
69+
| x x | |
70+
| | |
71+
| - - - - - - - - - o - - - - - - - - - - - |
72+
| | |
73+
| | |
74+
| | |
75+
| x | |
76+
| | x |
77+
| | |
78+
| | |
79+
| | |
80+
| | |
81+
| | |
82+
| | |
83+
| | x |
84+
| | x |
85+
--------------------------------------------
86+
<pre>bin/scatter.py -f data/lower48.txt -s 40 --pch .</pre>
87+
----------------------------------------------------------------------------------
88+
| . . . . . . . . . . . . . . . . . . . |
89+
| . . . . . . . . . . |
90+
| . . . . . . . . . . . |
91+
| . . . . . . . . |
92+
| . . . . . . . . . |
93+
| . . . . . . . . . . . . . . . . . . |
94+
| . . . . . . . . . . . . |
95+
| . . . . . . . . . . . . . . . . . . |
96+
| . . . . . . . . . . . . . . |
97+
| . . . . . . . . . . . . . . . . |
98+
| . . . . . . . . . . . . . . . . |
99+
| . . . . . . . . . . |
100+
| . . . . . . . . . . . . . . . . . . . . . . . . . . |
101+
| . . . . . . . . . . . . . . . . . . . . . . |
102+
| . . . . . . . . . . . . . |
103+
| . . . . . . . . . . . . . . . . . . . |
104+
| . . . . . . . . . . . . . . . |
105+
| . . . . . . . . . . . . . . . |
106+
| . . . . . . . . . . . . . . . . . . . |
107+
| . . . . . . . . . . . . |
108+
| . . . . . . . . . . . . . . . . . . . . . . . . |
109+
| . . . . . . . . . . . . . . . . . . . . . |
110+
| . . . . . . . . . . . . . |
111+
| . . . . . . . . . . . . . . . . . |
112+
| . . . . . . . . . . . . . . . . |
113+
| . . . . . . . . . . . . . . . |
114+
| . . . . . . . . . . . . . . |
115+
| . . . . . . . . . . . . |
116+
| . . . . . . . . . . |
117+
| . . . . . . . . . . . |
118+
| . . . . . . . . . . . |
119+
| . . . . . . . . . |
120+
| . . . . . . . . . . . . |
121+
| . . . . . . . . . . |
122+
| . . . . . |
123+
| . . . . . |
124+
| . . . . |
125+
| . . . . |
126+
| . . . . |
127+
| . |
128+
----------------------------------------------------------------------------------
129+
130+
Platform: UNKNOWN

bashplotlib.egg-info/SOURCES.txt

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
setup.py
2+
bashplotlib/__init__.py
3+
bashplotlib/histogram.py
4+
bashplotlib/scatterplot.py
5+
bashplotlib.egg-info/PKG-INFO
6+
bashplotlib.egg-info/SOURCES.txt
7+
bashplotlib.egg-info/dependency_links.txt
8+
bashplotlib.egg-info/top_level.txt
9+
bashplotlib/utils/__init__.py
10+
bashplotlib/utils/commandhelp.py
11+
bashplotlib/utils/helpers.py
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+

bashplotlib.egg-info/top_level.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
bashplotlib

bashplotlib/__init__.pyc

110 Bytes
Binary file not shown.

bashplotlib/hist.pyc

4.26 KB
Binary file not shown.
File renamed without changes.

bashplotlib/histogram.pyc

4.28 KB
Binary file not shown.

0 commit comments

Comments
 (0)