1
#!/usr/bin/env python
2
"""Who works on this project?
3
4
For printing a chart (the default), pygooglechart is required:
5
6
 http://pygooglechart.slowchop.com/
7
8
Note that this assumes you've got an OS-X style "open" command.  If
9
you don't, it should be easy enough to adapt main to what you need.
10
11
"""
12
13
import sys
14
15
import gitaggregates
16
17
if __name__ == '__main__':
18
    c = gitaggregates.Contributors(sys.argv[1:])
19
    gitaggregates.open_chart(c)