aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.gitignore4
-rw-r--r--python/Pipfile (renamed from Pipfile)0
-rw-r--r--python/Pipfile.lock (renamed from Pipfile.lock)0
-rw-r--r--python/README.md (renamed from README.md)0
-rw-r--r--python/TODO (renamed from TODO)0
-rw-r--r--python/config.py (renamed from config.py)0
-rw-r--r--python/fatcat/__init__.py (renamed from fatcat/__init__.py)0
-rw-r--r--python/fatcat/api.py (renamed from fatcat/api.py)0
-rw-r--r--python/fatcat/api_client.py (renamed from fatcat/api_client.py)0
-rw-r--r--python/fatcat/dummy.py (renamed from fatcat/dummy.py)0
-rw-r--r--python/fatcat/models.py (renamed from fatcat/models.py)0
-rw-r--r--python/fatcat/routes.py (renamed from fatcat/routes.py)0
-rw-r--r--python/fatcat/sql.py (renamed from fatcat/sql.py)0
-rw-r--r--python/fatcat/static/robots.txt (renamed from fatcat/static/robots.txt)0
-rw-r--r--python/fatcat/templates/404.html (renamed from fatcat/templates/404.html)0
-rw-r--r--python/fatcat/templates/about.html (renamed from fatcat/templates/about.html)0
-rw-r--r--python/fatcat/templates/base.html (renamed from fatcat/templates/base.html)0
-rw-r--r--python/fatcat/templates/container_add.html (renamed from fatcat/templates/container_add.html)0
-rw-r--r--python/fatcat/templates/container_view.html (renamed from fatcat/templates/container_view.html)0
-rw-r--r--python/fatcat/templates/creator_view.html (renamed from fatcat/templates/creator_view.html)0
-rw-r--r--python/fatcat/templates/editgroup_view.html (renamed from fatcat/templates/editgroup_view.html)0
-rw-r--r--python/fatcat/templates/editor_changelog.html (renamed from fatcat/templates/editor_changelog.html)0
-rw-r--r--python/fatcat/templates/editor_view.html (renamed from fatcat/templates/editor_view.html)0
-rw-r--r--python/fatcat/templates/file_view.html (renamed from fatcat/templates/file_view.html)0
-rw-r--r--python/fatcat/templates/home.html (renamed from fatcat/templates/home.html)0
-rw-r--r--python/fatcat/templates/release_changelog.html (renamed from fatcat/templates/release_changelog.html)0
-rw-r--r--python/fatcat/templates/release_view.html (renamed from fatcat/templates/release_view.html)0
-rw-r--r--python/fatcat/templates/work_add.html (renamed from fatcat/templates/work_add.html)0
-rw-r--r--python/fatcat/templates/work_view.html (renamed from fatcat/templates/work_view.html)0
-rwxr-xr-xpython/fatcat_client.py (renamed from fatcat_client.py)0
-rw-r--r--python/pytest.ini (renamed from pytest.ini)0
-rwxr-xr-xpython/run.py (renamed from run.py)0
-rw-r--r--python/schema.sql (renamed from schema.sql)0
-rw-r--r--python/tests/api.py (renamed from tests/api.py)0
-rw-r--r--python/tests/api_client.py (renamed from tests/api_client.py)0
-rw-r--r--python/tests/entity_lifecycle.py (renamed from tests/entity_lifecycle.py)0
-rw-r--r--python/tests/files/crossref-works.2018-01-21.badsample.json (renamed from tests/files/crossref-works.2018-01-21.badsample.json)0
-rw-r--r--python/tests/fixtures.py (renamed from tests/fixtures.py)0
-rw-r--r--python/tests/models.py (renamed from tests/models.py)0
-rw-r--r--python/tests/routes.py (renamed from tests/routes.py)0
-rw-r--r--python/tests/test_fixtures.py (renamed from tests/test_fixtures.py)0
41 files changed, 1 insertions, 3 deletions
diff --git a/.gitignore b/.gitignore
index 4a42de1a..6932422b 100644
--- a/.gitignore
+++ b/.gitignore
@@ -20,9 +20,7 @@ golang/fatcatd
*.DS_Store
*.log
-!.coveragerc
!.gitlab-ci.yml
-!.pylintrc
# Don't ignore this file itself
-!.gitignore
+:Q!.gitignore
diff --git a/Pipfile b/python/Pipfile
index d60bf48f..d60bf48f 100644
--- a/Pipfile
+++ b/python/Pipfile
diff --git a/Pipfile.lock b/python/Pipfile.lock
index 677cc5eb..677cc5eb 100644
--- a/Pipfile.lock
+++ b/python/Pipfile.lock
diff --git a/README.md b/python/README.md
index dbf6aef7..dbf6aef7 100644
--- a/README.md
+++ b/python/README.md
diff --git a/TODO b/python/TODO
index 88186280..88186280 100644
--- a/TODO
+++ b/python/TODO
diff --git a/config.py b/python/config.py
index a7ec4b50..a7ec4b50 100644
--- a/config.py
+++ b/python/config.py
diff --git a/fatcat/__init__.py b/python/fatcat/__init__.py
index a824d220..a824d220 100644
--- a/fatcat/__init__.py
+++ b/python/fatcat/__init__.py
diff --git a/fatcat/api.py b/python/fatcat/api.py
index 2c91533b..2c91533b 100644
--- a/fatcat/api.py
+++ b/python/fatcat/api.py
diff --git a/fatcat/api_client.py b/python/fatcat/api_client.py
index f2fd6a1d..f2fd6a1d 100644
--- a/fatcat/api_client.py
+++ b/python/fatcat/api_client.py
diff --git a/fatcat/dummy.py b/python/fatcat/dummy.py
index f22c4dcb..f22c4dcb 100644
--- a/fatcat/dummy.py
+++ b/python/fatcat/dummy.py
diff --git a/fatcat/models.py b/python/fatcat/models.py
index c35e541f..c35e541f 100644
--- a/fatcat/models.py
+++ b/python/fatcat/models.py
diff --git a/fatcat/routes.py b/python/fatcat/routes.py
index 0c86bd78..0c86bd78 100644
--- a/fatcat/routes.py
+++ b/python/fatcat/routes.py
diff --git a/fatcat/sql.py b/python/fatcat/sql.py
index 9b1922ba..9b1922ba 100644
--- a/fatcat/sql.py
+++ b/python/fatcat/sql.py
diff --git a/fatcat/static/robots.txt b/python/fatcat/static/robots.txt
index a168f11b..a168f11b 100644
--- a/fatcat/static/robots.txt
+++ b/python/fatcat/static/robots.txt
diff --git a/fatcat/templates/404.html b/python/fatcat/templates/404.html
index c8fbfeac..c8fbfeac 100644
--- a/fatcat/templates/404.html
+++ b/python/fatcat/templates/404.html
diff --git a/fatcat/templates/about.html b/python/fatcat/templates/about.html
index ce194099..ce194099 100644
--- a/fatcat/templates/about.html
+++ b/python/fatcat/templates/about.html
diff --git a/fatcat/templates/base.html b/python/fatcat/templates/base.html
index 697705c3..697705c3 100644
--- a/fatcat/templates/base.html
+++ b/python/fatcat/templates/base.html
diff --git a/fatcat/templates/container_add.html b/python/fatcat/templates/container_add.html
index 15288142..15288142 100644
--- a/fatcat/templates/container_add.html
+++ b/python/fatcat/templates/container_add.html
diff --git a/fatcat/templates/container_view.html b/python/fatcat/templates/container_view.html
index 483886b5..483886b5 100644
--- a/fatcat/templates/container_view.html
+++ b/python/fatcat/templates/container_view.html
diff --git a/fatcat/templates/creator_view.html b/python/fatcat/templates/creator_view.html
index f7be9f2c..f7be9f2c 100644
--- a/fatcat/templates/creator_view.html
+++ b/python/fatcat/templates/creator_view.html
diff --git a/fatcat/templates/editgroup_view.html b/python/fatcat/templates/editgroup_view.html
index 4ed08501..4ed08501 100644
--- a/fatcat/templates/editgroup_view.html
+++ b/python/fatcat/templates/editgroup_view.html
diff --git a/fatcat/templates/editor_changelog.html b/python/fatcat/templates/editor_changelog.html
index e1410874..e1410874 100644
--- a/fatcat/templates/editor_changelog.html
+++ b/python/fatcat/templates/editor_changelog.html
diff --git a/fatcat/templates/editor_view.html b/python/fatcat/templates/editor_view.html
index e0625c42..e0625c42 100644
--- a/fatcat/templates/editor_view.html
+++ b/python/fatcat/templates/editor_view.html
diff --git a/fatcat/templates/file_view.html b/python/fatcat/templates/file_view.html
index ff55e21c..ff55e21c 100644
--- a/fatcat/templates/file_view.html
+++ b/python/fatcat/templates/file_view.html
diff --git a/fatcat/templates/home.html b/python/fatcat/templates/home.html
index cea4f687..cea4f687 100644
--- a/fatcat/templates/home.html
+++ b/python/fatcat/templates/home.html
diff --git a/fatcat/templates/release_changelog.html b/python/fatcat/templates/release_changelog.html
index 706a5642..706a5642 100644
--- a/fatcat/templates/release_changelog.html
+++ b/python/fatcat/templates/release_changelog.html
diff --git a/fatcat/templates/release_view.html b/python/fatcat/templates/release_view.html
index ee68161c..ee68161c 100644
--- a/fatcat/templates/release_view.html
+++ b/python/fatcat/templates/release_view.html
diff --git a/fatcat/templates/work_add.html b/python/fatcat/templates/work_add.html
index ac8a8169..ac8a8169 100644
--- a/fatcat/templates/work_add.html
+++ b/python/fatcat/templates/work_add.html
diff --git a/fatcat/templates/work_view.html b/python/fatcat/templates/work_view.html
index 8c5e955d..8c5e955d 100644
--- a/fatcat/templates/work_view.html
+++ b/python/fatcat/templates/work_view.html
diff --git a/fatcat_client.py b/python/fatcat_client.py
index d1580be5..d1580be5 100755
--- a/fatcat_client.py
+++ b/python/fatcat_client.py
diff --git a/pytest.ini b/python/pytest.ini
index 0a5e9216..0a5e9216 100644
--- a/pytest.ini
+++ b/python/pytest.ini
diff --git a/run.py b/python/run.py
index 0fbd6194..0fbd6194 100755
--- a/run.py
+++ b/python/run.py
diff --git a/schema.sql b/python/schema.sql
index ec38bcb3..ec38bcb3 100644
--- a/schema.sql
+++ b/python/schema.sql
diff --git a/tests/api.py b/python/tests/api.py
index 02875f64..02875f64 100644
--- a/tests/api.py
+++ b/python/tests/api.py
diff --git a/tests/api_client.py b/python/tests/api_client.py
index 37e3da56..37e3da56 100644
--- a/tests/api_client.py
+++ b/python/tests/api_client.py
diff --git a/tests/entity_lifecycle.py b/python/tests/entity_lifecycle.py
index 4ac7ee68..4ac7ee68 100644
--- a/tests/entity_lifecycle.py
+++ b/python/tests/entity_lifecycle.py
diff --git a/tests/files/crossref-works.2018-01-21.badsample.json b/python/tests/files/crossref-works.2018-01-21.badsample.json
index 143adf3e..143adf3e 100644
--- a/tests/files/crossref-works.2018-01-21.badsample.json
+++ b/python/tests/files/crossref-works.2018-01-21.badsample.json
diff --git a/tests/fixtures.py b/python/tests/fixtures.py
index d3d8c24b..d3d8c24b 100644
--- a/tests/fixtures.py
+++ b/python/tests/fixtures.py
diff --git a/tests/models.py b/python/tests/models.py
index 98bb6bc7..98bb6bc7 100644
--- a/tests/models.py
+++ b/python/tests/models.py
diff --git a/tests/routes.py b/python/tests/routes.py
index 79d97fe4..79d97fe4 100644
--- a/tests/routes.py
+++ b/python/tests/routes.py
diff --git a/tests/test_fixtures.py b/python/tests/test_fixtures.py
index 0a0d3176..0a0d3176 100644
--- a/tests/test_fixtures.py
+++ b/python/tests/test_fixtures.py