summaryrefslogtreecommitdiff
path: root/tmdbv3api/debian/copyright
diff options
context:
space:
mode:
Diffstat (limited to 'tmdbv3api/debian/copyright')
-rw-r--r--tmdbv3api/debian/copyright88
1 files changed, 88 insertions, 0 deletions
diff --git a/tmdbv3api/debian/copyright b/tmdbv3api/debian/copyright
new file mode 100644
index 0000000..586580d
--- /dev/null
+++ b/tmdbv3api/debian/copyright
@@ -0,0 +1,88 @@
+Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: tmdbv3api
+Upstream-Contact: Anthony Bloomer <anthony.bloomer@icloud.com>
+Source: https://github.com/AnthonyBloomer/tmdbv3api
+
+Files: .github/dependabot.yml
+ .github/workflows/python-publish.yml
+ .gitignore
+ .travis.yml
+ README.rst
+ examples/account_info.py
+ examples/certification.py
+ examples/collection.py
+ examples/company.py
+ examples/configuration.py
+ examples/discover.py
+ examples/find.py
+ examples/lists.py
+ examples/movie_details.py
+ examples/movie_genres.py
+ examples/popular.py
+ examples/recommender.py
+ examples/search_movies.py
+ examples/search_multi.py
+ examples/search_tv.py
+ examples/trending.py
+ requirements.txt
+ setup.py
+ tests/test_account.py
+ tests/test_as_obj.py
+ tests/test_certification.py
+ tests/test_change.py
+ tests/test_collection.py
+ tests/test_company.py
+ tests/test_configuration.py
+ tests/test_credit.py
+ tests/test_discover.py
+ tests/test_episode.py
+ tests/test_find.py
+ tests/test_genre.py
+ tests/test_group.py
+ tests/test_keyword.py
+ tests/test_list.py
+ tests/test_movie.py
+ tests/test_network.py
+ tests/test_person.py
+ tests/test_provider.py
+ tests/test_review.py
+ tests/test_search.py
+ tests/test_season.py
+ tests/test_trending.py
+ tests/test_tv.py
+ tests/util.py
+ tmdbv3api/__init__.py
+ tmdbv3api/as_obj.py
+ tmdbv3api/exceptions.py
+ tmdbv3api/objs/__init__.py
+ tmdbv3api/objs/account.py
+ tmdbv3api/objs/auth.py
+ tmdbv3api/objs/certification.py
+ tmdbv3api/objs/change.py
+ tmdbv3api/objs/collection.py
+ tmdbv3api/objs/company.py
+ tmdbv3api/objs/configuration.py
+ tmdbv3api/objs/credit.py
+ tmdbv3api/objs/discover.py
+ tmdbv3api/objs/episode.py
+ tmdbv3api/objs/find.py
+ tmdbv3api/objs/genre.py
+ tmdbv3api/objs/group.py
+ tmdbv3api/objs/keyword.py
+ tmdbv3api/objs/list.py
+ tmdbv3api/objs/movie.py
+ tmdbv3api/objs/network.py
+ tmdbv3api/objs/person.py
+ tmdbv3api/objs/provider.py
+ tmdbv3api/objs/review.py
+ tmdbv3api/objs/search.py
+ tmdbv3api/objs/season.py
+ tmdbv3api/objs/trending.py
+ tmdbv3api/objs/tv.py
+ tmdbv3api/tmdb.py
+Copyright: __NO_COPYRIGHT_NOR_LICENSE__
+License: __NO_COPYRIGHT_NOR_LICENSE__
+
+#----------------------------------------------------------------------------
+# Files marked as NO_LICENSE_TEXT_FOUND may be covered by the following
+# license/copyright files.
bgstack15