/ .gitignore
.gitignore
 1  ############################ Copyrights and license ############################
 2  #                                                                              #
 3  # Copyright 2012 Vincent Jacques <vincent@vincent-jacques.net>                 #
 4  # Copyright 2013 AKFish <akfish@gmail.com>                                     #
 5  # Copyright 2013 Vincent Jacques <vincent@vincent-jacques.net>                 #
 6  # Copyright 2014 Nic Dahlquist <nic@snapchat.com>                              #
 7  # Copyright 2014 Vincent Jacques <vincent@vincent-jacques.net>                 #
 8  # Copyright 2016 Peter Buckley <dx-pbuckley@users.noreply.github.com>          #
 9  # Copyright 2017 Chris McBride <thehighlander@users.noreply.github.com>        #
10  # Copyright 2017 Colin Hoglund <colinhoglund@users.noreply.github.com>         #
11  # Copyright 2018 sfdye <tsfdye@gmail.com>                                      #
12  #                                                                              #
13  # This file is part of PyGithub.                                               #
14  # http://pygithub.readthedocs.io/                                              #
15  #                                                                              #
16  # PyGithub is free software: you can redistribute it and/or modify it under    #
17  # the terms of the GNU Lesser General Public License as published by the Free  #
18  # Software Foundation, either version 3 of the License, or (at your option)    #
19  # any later version.                                                           #
20  #                                                                              #
21  # PyGithub is distributed in the hope that it will be useful, but WITHOUT ANY  #
22  # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS    #
23  # FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more #
24  # details.                                                                     #
25  #                                                                              #
26  # You should have received a copy of the GNU Lesser General Public License     #
27  # along with PyGithub. If not, see <http://www.gnu.org/licenses/>.             #
28  #                                                                              #
29  ################################################################################
30  
31  *.pyc
32  .eggs/
33  .python-version
34  
35  /GithubCredentials.py
36  /scripts/TwitterCredentials.py
37  /dist/
38  /build/
39  /MANIFEST
40  /PyGithub.egg-info/
41  /.coverage
42  /coverage.xml
43  /.idea
44  /developer.github.com/
45  /gh-pages/
46  /doc/doctrees/
47  .vscode*
48  .venv
49  venv
50  .tox/
51  .mypy_cache/