Skip to content

Commit 6eeeef9

Browse files
committed
Add per-file licensing info.
Removes a -10 'packaging smell', and basically for free with ucopy ;)
1 parent 6432fe9 commit 6eeeef9

Some content is hidden

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

55 files changed

+413
-27
lines changed

.ucopy.cfg

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
[repo]
2+
name = python-github2
3+
license-from = bsd-3
4+
vcs = git
5+
6+
[files]
7+
ignore-from = git
8+
ignore-glob = COPYING, README.rst, .keep, test/data/github.com,api*
9+
10+
[patch]
11+
unicode = python
12+
13+
[author-override]
14+
15+
Chris Vale = <[email protected]>
16+
Claudio B. = <[email protected]>
17+
Daniel Greenfeld = <[email protected]>
18+
Donald von Stufft = <[email protected]>
19+
Michael Basnight = <[email protected]>
20+
Sameer Al-Sakran = <[email protected]>
21+
Stéphane Angel = <[email protected]>

AUTHORS

+28-21
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,38 @@
1-
Ask Solem <[email protected]>
2-
Mark Paschal <[email protected]>
3-
Donald von Stufft <[email protected]>
4-
Maximillian Dornseif
1+
python-github2 was written by:
2+
3+
Ask Solem <[email protected]>
4+
5+
with contributions from the following people:
6+
7+
Adam Vandenberg <[email protected]>
58
Asheesh Laroia <[email protected]>
6-
Rick Harris <[email protected]>
7-
Cody Soyland <[email protected]>
8-
Fernando Perez <[email protected]>
9-
Evan Broder <[email protected]>
10-
Scott Torborg <[email protected]>
11-
Claudio B. <[email protected]>
9+
Barthelemy Dagenais <[email protected]>
1210
Chris Vale <[email protected]>
13-
Adam Vandenberg <[email protected]>
14-
Kenneth Reitz <[email protected]>
11+
Christopher MacGown <[email protected]>
12+
Claudio B. <[email protected]>
13+
Cody Soyland <[email protected]>
1514
Daniel Greenfeld <[email protected]>
15+
Donald von Stufft <[email protected]>
16+
Evan Broder <[email protected]>
17+
Fernando Perez <[email protected]>
18+
Ionuț Arțăriși <[email protected]>
19+
James Rowe <[email protected]>
20+
Jens Ohlig <[email protected]>
1621
Jeremy Dunck <[email protected]>
1722
Jonas Obrist <[email protected]>
18-
Sameer Al-Sakran <[email protected]>
19-
Vincent Driessen <[email protected]>
20-
James Rowe <[email protected]>
2123
Josh Weinberg <[email protected]>
22-
Barthelemy Dagenais <[email protected]>
23-
Surajram Kumarave <root@surajram.com>
24-
broderboy <[email protected]>
25-
Patryk Zawadzki <[email protected]>
24+
Justin Quick <[email protected]>
25+
Kenneth Reitz <me@kennethreitz.com>
26+
Mark Paschal <[email protected]>
27+
Maximillian Dornseif <[email protected]>
2628
Michael Basnight <[email protected]>
27-
Christopher MacGown <[email protected]>
29+
Patryk Zawadzki <[email protected]>
30+
Rick Harris <[email protected]>
2831
Rok Garbas <[email protected]>
29-
Ionuț Arțăriși <[email protected]>
32+
Sameer Al-Sakran <[email protected]>
33+
Scott Torborg <[email protected]>
3034
Stéphane Angel <[email protected]>
35+
Surajram Kumaravel <[email protected]>
36+
Vincent Driessen <[email protected]>
37+
broderboy <[email protected]>
3138
modocache <[email protected]>

doc/.templates/layout.html

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
{#
2+
Copyright (C) 2011-2012 James Rowe <jnrowe@gmail.com>
3+
4+
This file is part of python-github2, and is licensed under the 3-clause BSD
5+
License. See the LICENSE file in the top distribution directory for the full
6+
license text.
7+
#}
18
{% extends "!layout.html" %}
29

310
{% block extrahead %}

doc/api/client.rst

+8
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
.. Copyright (C) 2011-2012 James Rowe <[email protected]>
2+
Michael Basnight <[email protected]>
3+
modocache <[email protected]>
4+
5+
This file is part of python-github2, is licensed under the 3-clause BSD
6+
License. See the LICENSE file in the top distribution directory for the full
7+
license text.
8+
19
.. module:: github2.client
210

311
Creating a client

doc/api/commit.rst

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
.. Copyright (C) 2011-2012 James Rowe <[email protected]>
2+
3+
This file is part of python-github2, is licensed under the 3-clause BSD
4+
License. See the LICENSE file in the top distribution directory for the full
5+
license text.
6+
17
.. module:: github2.commits
28

39
Commit

doc/api/core.rst

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
.. Copyright (C) 2011-2012 James Rowe <[email protected]>
2+
3+
This file is part of python-github2, is licensed under the 3-clause BSD
4+
License. See the LICENSE file in the top distribution directory for the full
5+
license text.
6+
17
.. module:: github2.core
28

39
Core

doc/api/index.rst

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
.. Copyright (C) 2011-2012 James Rowe <[email protected]>
2+
3+
This file is part of python-github2, is licensed under the 3-clause BSD
4+
License. See the LICENSE file in the top distribution directory for the full
5+
license text.
6+
17
API documentation
28
=================
39

doc/api/issues.rst

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
.. Copyright (C) 2011-2012 James Rowe <[email protected]>
2+
3+
This file is part of python-github2, is licensed under the 3-clause BSD
4+
License. See the LICENSE file in the top distribution directory for the full
5+
license text.
6+
17
.. module:: github2.issues
28

39
Issues

doc/api/network.rst

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
.. Copyright (C) 2011-2012 James Rowe <[email protected]>
2+
3+
This file is part of python-github2, is licensed under the 3-clause BSD
4+
License. See the LICENSE file in the top distribution directory for the full
5+
license text.
6+
17
.. currentmodule:: github2.client
28

39
Network

doc/api/object.rst

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
.. Copyright (C) 2011-2012 James Rowe <[email protected]>
2+
3+
This file is part of python-github2, is licensed under the 3-clause BSD
4+
License. See the LICENSE file in the top distribution directory for the full
5+
license text.
6+
17
.. currentmodule:: github2.client
28

39
Object

doc/api/organizations.rst

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
.. Copyright (C) 2011-2012 James Rowe <[email protected]>
2+
3+
This file is part of python-github2, is licensed under the 3-clause BSD
4+
License. See the LICENSE file in the top distribution directory for the full
5+
license text.
6+
17
.. module:: github2.organizations
28

39
Organizations

doc/api/pull_requests.rst

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
.. Copyright (C) 2011-2012 James Rowe <[email protected]>
2+
3+
This file is part of python-github2, is licensed under the 3-clause BSD
4+
License. See the LICENSE file in the top distribution directory for the full
5+
license text.
6+
17
.. module:: github2.pull_requests
28

39
Pull requests

doc/api/repos.rst

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
.. Copyright (C) 2011-2012 James Rowe <[email protected]>
2+
3+
This file is part of python-github2, is licensed under the 3-clause BSD
4+
License. See the LICENSE file in the top distribution directory for the full
5+
license text.
6+
17
.. module:: github2.repositories
28

39
Repository

doc/api/request.rst

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
.. Copyright (C) 2011-2012 James Rowe <[email protected]>
2+
3+
This file is part of python-github2, is licensed under the 3-clause BSD
4+
License. See the LICENSE file in the top distribution directory for the full
5+
license text.
6+
17
.. module:: github2.request
28

39
Requests

doc/api/teams.rst

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
.. Copyright (C) 2011-2012 James Rowe <[email protected]>
2+
3+
This file is part of python-github2, is licensed under the 3-clause BSD
4+
License. See the LICENSE file in the top distribution directory for the full
5+
license text.
6+
17
.. module:: github2.teams
28

39
Teams

doc/api/users.rst

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
.. Copyright (C) 2011-2012 James Rowe <[email protected]>
2+
3+
This file is part of python-github2, is licensed under the 3-clause BSD
4+
License. See the LICENSE file in the top distribution directory for the full
5+
license text.
6+
17
.. module:: github2.users
28

39
Users

doc/bugs.rst

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
.. Copyright (C) 2011-2012 James Rowe <[email protected]>
2+
3+
This file is part of python-github2, and is licensed under the 3-clause BSD
4+
License. See the LICENSE file in the top distribution directory for the full
5+
license text.
6+
17
Reporting bugs
28
==============
39

doc/contributing.rst

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
.. Copyright (C) 2011-2012 James Rowe <[email protected]>
2+
3+
This file is part of python-github2, and is licensed under the 3-clause BSD
4+
License. See the LICENSE file in the top distribution directory for the full
5+
license text.
6+
17
Contributing
28
============
39

doc/index.rst

+5-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
1-
.. python-github2 documentation master file, created by
2-
sphinx-quickstart on Mon Apr 11 16:16:25 2011.
3-
You can adapt this file completely to your liking, but it should at least
4-
contain the root `toctree` directive.
1+
.. Copyright (C) 2011-2012 James Rowe <[email protected]>
2+
3+
This file is part of python-github2, and is licensed under the 3-clause BSD
4+
License. See the LICENSE file in the top distribution directory for the full
5+
license text.
56
67
..
78
If you prefer you can also read the pre-built documentation at

doc/install.rst

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
.. Copyright (C) 2011-2012 James Rowe <[email protected]>
2+
Michael Basnight <[email protected]>
3+
4+
This file is part of python-github2, and is licensed under the 3-clause BSD
5+
License. See the LICENSE file in the top distribution directory for the full
6+
license text.
7+
18
Installation
29
------------
310

doc/license.rst

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
.. Copyright (C) 2011-2012 James Rowe <[email protected]>
2+
3+
This file is part of python-github2, and is licensed under the 3-clause BSD
4+
License. See the LICENSE file in the top distribution directory for the full
5+
license text.
6+
17
License
28
=======
39

doc/problems.rst

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
.. Copyright (C) 2011-2012 James Rowe <[email protected]>
2+
3+
This file is part of python-github2, and is licensed under the 3-clause BSD
4+
License. See the LICENSE file in the top distribution directory for the full
5+
license text.
6+
17
Solving problems
28
================
39

doc/quickstart.rst

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
.. Copyright (C) 2011-2012 James Rowe <[email protected]>
2+
3+
This file is part of python-github2, and is licensed under the 3-clause BSD
4+
License. See the LICENSE file in the top distribution directory for the full
5+
license text.
6+
17
Quickstart
28
==========
39

doc/release.rst

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
.. Copyright (C) 2012 James Rowe <[email protected]>
2+
3+
This file is part of python-github2, and is licensed under the 3-clause BSD
4+
License. See the LICENSE file in the top distribution directory for the full
5+
license text.
6+
17
Release HOWTO
28
=============
39

doc/wild.rst

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
.. Copyright (C) 2011-2012 James Rowe <[email protected]>
2+
Stéphane Angel <[email protected]>
3+
4+
This file is part of python-github2, and is licensed under the 3-clause BSD
5+
License. See the LICENSE file in the top distribution directory for the full
6+
license text.
7+
18
In the wild
29
-----------
310

examples/friend-or-follow.py

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
# Copyright (C) 2010-2012 Ask Solem <[email protected]>
2+
#
3+
# This file is part of python-github2, and is made available under the 3-clause
4+
# BSD license. See LICENSE for the full details.
5+
16
import sys
27
import optparse
38
from subprocess import Popen, PIPE

github2/__init__.py

+6
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
11
"Github API v2 library for Python"
2+
# Copyright (C) 2009-2012 Ask Solem <[email protected]>
3+
# James Rowe <[email protected]>
4+
# Maximillian Dornseif <[email protected]>
5+
#
6+
# This file is part of python-github2, and is made available under the 3-clause
7+
# BSD license. See LICENSE for the full details.
28

39
from github2 import _version
410

github2/bin/__init__.py

+4
Original file line numberDiff line numberDiff line change
@@ -1 +1,5 @@
11
#
2+
# Copyright (C) 2011-2012 James Rowe <[email protected]>
3+
#
4+
# This file is part of python-github2, and is made available under the 3-clause
5+
# BSD license. See LICENSE for the full details.

github2/bin/manage_collaborators.py

+5-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,11 @@
88
"""
99

1010
# Created by Maximillian Dornseif on 2009-12-31 for HUDORA.
11-
# Copyright (c) 2009 HUDORA. All rights reserved.
12-
# BSD licensed
11+
# Copyright (C) 2009-2012 James Rowe <[email protected]>
12+
# Maximillian Dornseif <[email protected]>
13+
#
14+
# This file is part of python-github2, and is made available under the 3-clause
15+
# BSD license. See LICENSE for the full details.
1316

1417
import logging
1518
import sys

github2/bin/search_repos.py

+4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
#! /usr/bin/env python
22
# coding: utf-8
33
"""github_search_repos - search for repositories on GitHub"""
4+
# Copyright (C) 2011-2012 James Rowe <[email protected]>
5+
#
6+
# This file is part of python-github2, and is made available under the 3-clause
7+
# BSD license. See LICENSE for the full details.
48

59

610
import logging

github2/client.py

+15
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
# -*- coding: utf-8 -*-
2+
# Copyright (C) 2009-2012 Ask Solem <[email protected]>
3+
# Christopher MacGown <[email protected]>
4+
# Evan Broder <[email protected]>
5+
# James Rowe <[email protected]>
6+
# Jeremy Dunck <[email protected]>
7+
# Michael Basnight <[email protected]>
8+
# Patryk Zawadzki <[email protected]>
9+
# Surajram Kumaravel <[email protected]>
10+
# Vincent Driessen <[email protected]>
11+
# modocache <[email protected]>
12+
#
13+
# This file is part of python-github2, and is made available under the 3-clause
14+
# BSD license. See LICENSE for the full details.
15+
116
from github2.request import GithubRequest
217
from github2.issues import Issues
318
from github2.repositories import Repositories

0 commit comments

Comments
 (0)