Skip to content

Commit 79aeca5

Browse files
author
Director of Analytics
committed
updated gitignore
1 parent 3ecfc7b commit 79aeca5

File tree

4 files changed

+25
-3
lines changed

4 files changed

+25
-3
lines changed

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
11
*.pyc
22
env
33
*.txt
4+
bashplotlib.egg-info
5+
build
6+
dist
7+

bashplotlib.egg-info/PKG-INFO

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,24 @@
11
Metadata-Version: 1.0
22
Name: bashplotlib
3-
Version: 0.1.0
3+
Version: 0.2.0
44
Summary: UNKNOWN
55
Home-page: UNKNOWN
66
Author: UNKNOWN
77
Author-email: UNKNOWN
8-
License: MIT
8+
License: Copyright 2013 Kenneth Reitz
9+
10+
Licensed under the Apache License, Version 2.0 (the "License");
11+
you may not use this file except in compliance with the License.
12+
You may obtain a copy of the License at
13+
14+
http://www.apache.org/licenses/LICENSE-2.0
15+
16+
Unless required by applicable law or agreed to in writing, software
17+
distributed under the License is distributed on an "AS IS" BASIS,
18+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
19+
See the License for the specific language governing permissions and
20+
limitations under the License.
21+
922
Description: #bashplotlib
1023
*matplotlib's distant cousin from the command line*
1124

bashplotlib/data/million.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
from random import normalvariate
2+
3+
for i in range(1000000):
4+
print normalvariate(0., 1.)
5+
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import sys; sys.__plen = len(sys.path)
22
./setuptools-0.6c11-py2.7.egg
33
./pip-1.2.1-py2.7.egg
4-
./bashplotlib-0.1.0-py2.7.egg
4+
./bashplotlib-0.2.0-py2.7.egg
55
import sys; new=sys.path[sys.__plen:]; del sys.path[sys.__plen:]; p=getattr(sys,'__egginsert',0); sys.path[p:p]=new; sys.__egginsert = p+len(new)

0 commit comments

Comments
 (0)