diff --git a/NOTICE b/NOTICE index 0c5feb9e..afe44564 100644 --- a/NOTICE +++ b/NOTICE @@ -1,5 +1,9 @@ py2neo -Copyright 2011-2021, Nigel Small +Copyright (c) "Neo4j" +Neo4j Sweden AB [https://neo4j.com] + +This product includes software developed by +Neo4j, Inc. . This product includes software developed by Nigel Small . diff --git a/README.rst b/README.rst index cdb71371..9c8eb2bc 100644 --- a/README.rst +++ b/README.rst @@ -1,7 +1,7 @@ Py2neo ====== -** **Please now consider this project to be EOL. There will be no more updates. It is recommended to use the official Neo4j drivers instead.** ** +** **Py2neo has now been officially picked up by Neo4j and all code and copyrights have been transferred. In return, Neo4j have very kindly made a generous donation to The Bone Cancer Research Trust . The new project home is at . I am hugely grateful to everyone who has contributed to and used this project over the years. --Nigel** ** The version history of py2neo on PyPI got lost. If you need an older version, you can install [`py2neo-history`](https://pypi.org/project/py2neo-history/) instead. diff --git a/bin/check-legal b/bin/check-legal index 2fe9d4bb..d6dfd11d 100755 --- a/bin/check-legal +++ b/bin/check-legal @@ -10,9 +10,7 @@ function check_license { function check_copyright { - #YEAR=$(date +%Y) - YEAR=2021 # when this project was abandoned - find "${SRC}" -type d \( -path "${SRC}/vendor" \) -prune -o -name '*.py' -print0 | xargs -0 grep -L -e "Copyright.* 20[0-9][0-9]-${YEAR}" + find "${SRC}" -type d \( -path "${SRC}/vendor" \) -prune -o -name '*.py' -print0 | xargs -0 grep -L -e 'Copyright (c) "Neo4j"' } diff --git a/docs/conf.py b/docs/conf.py index d7502b58..a51616ad 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -140,12 +140,6 @@ html_theme_options = { 'sidebarwidth': 330, 'collapsiblesidebar': True, - #'logo': 'py2neo-v4.280x336.png', - #'logo_align': 'left', - #'github_user': 'technige', - #'github_repo': 'py2neo', - #'github_branch': 'v3', - #'travis_button': True, } # Add any paths that contain custom themes here, relative to this directory. diff --git a/perf.py b/perf.py index 0f797939..c461baf2 100644 --- a/perf.py +++ b/perf.py @@ -1,7 +1,8 @@ #!/usr/bin/env python # coding: utf-8 -# Copyright 2011-2021, Nigel Small +# Copyright (c) "Neo4j" +# Neo4j Sweden AB [https://neo4j.com] # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/py2neo/__init__.py b/py2neo/__init__.py index e6d0c265..45c354a0 100644 --- a/py2neo/__init__.py +++ b/py2neo/__init__.py @@ -1,7 +1,8 @@ #!/usr/bin/env python # -*- encoding: utf-8 -*- -# Copyright 2011-2021, Nigel Small +# Copyright (c) "Neo4j" +# Neo4j Sweden AB [https://neo4j.com] # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/py2neo/addressing.py b/py2neo/addressing.py index c82b33f3..e44d58d4 100644 --- a/py2neo/addressing.py +++ b/py2neo/addressing.py @@ -1,7 +1,8 @@ #!/usr/bin/env python # -*- encoding: utf-8 -*- -# Copyright 2011-2021, Nigel Small +# Copyright (c) "Neo4j" +# Neo4j Sweden AB [https://neo4j.com] # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/py2neo/bulk/__init__.py b/py2neo/bulk/__init__.py index e41892cc..bfee1a8f 100644 --- a/py2neo/bulk/__init__.py +++ b/py2neo/bulk/__init__.py @@ -1,7 +1,8 @@ #!/usr/bin/env python # -*- encoding: utf-8 -*- -# Copyright 2011-2021, Nigel Small +# Copyright (c) "Neo4j" +# Neo4j Sweden AB [https://neo4j.com] # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/py2neo/client/__init__.py b/py2neo/client/__init__.py index c66f57f6..c9af7e7a 100644 --- a/py2neo/client/__init__.py +++ b/py2neo/client/__init__.py @@ -1,7 +1,8 @@ #!/usr/bin/env python # -*- encoding: utf-8 -*- -# Copyright 2011-2021, Nigel Small +# Copyright (c) "Neo4j" +# Neo4j Sweden AB [https://neo4j.com] # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/py2neo/client/bolt.py b/py2neo/client/bolt.py index 068c95af..399fb8c3 100644 --- a/py2neo/client/bolt.py +++ b/py2neo/client/bolt.py @@ -1,7 +1,8 @@ #!/usr/bin/env python # -*- encoding: utf-8 -*- -# Copyright 2011-2021, Nigel Small +# Copyright (c) "Neo4j" +# Neo4j Sweden AB [https://neo4j.com] # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/py2neo/client/http.py b/py2neo/client/http.py index cf69897c..af8f3771 100644 --- a/py2neo/client/http.py +++ b/py2neo/client/http.py @@ -1,7 +1,8 @@ #!/usr/bin/env python # -*- encoding: utf-8 -*- -# Copyright 2011-2021, Nigel Small +# Copyright (c) "Neo4j" +# Neo4j Sweden AB [https://neo4j.com] # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/py2neo/client/json.py b/py2neo/client/json.py index 490debc2..57ad6069 100644 --- a/py2neo/client/json.py +++ b/py2neo/client/json.py @@ -1,7 +1,8 @@ #!/usr/bin/env python # -*- encoding: utf-8 -*- -# Copyright 2011-2021, Nigel Small +# Copyright (c) "Neo4j" +# Neo4j Sweden AB [https://neo4j.com] # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/py2neo/compat.py b/py2neo/compat.py index a72d3a48..ececf5cd 100644 --- a/py2neo/compat.py +++ b/py2neo/compat.py @@ -1,7 +1,8 @@ #!/usr/bin/env python # -*- encoding: utf-8 -*- -# Copyright 2011-2021, Nigel Small +# Copyright (c) "Neo4j" +# Neo4j Sweden AB [https://neo4j.com] # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/py2neo/cypher/__init__.py b/py2neo/cypher/__init__.py index 34c3bb5a..70d17136 100644 --- a/py2neo/cypher/__init__.py +++ b/py2neo/cypher/__init__.py @@ -1,7 +1,8 @@ #!/usr/bin/env python # -*- encoding: utf-8 -*- -# Copyright 2011-2021, Nigel Small +# Copyright (c) "Neo4j" +# Neo4j Sweden AB [https://neo4j.com] # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/py2neo/cypher/encoding.py b/py2neo/cypher/encoding.py index 243e2883..1f81ea9e 100644 --- a/py2neo/cypher/encoding.py +++ b/py2neo/cypher/encoding.py @@ -1,7 +1,8 @@ #!/usr/bin/env python # -*- encoding: utf-8 -*- -# Copyright 2011-2021, Nigel Small +# Copyright (c) "Neo4j" +# Neo4j Sweden AB [https://neo4j.com] # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/py2neo/cypher/lexer.py b/py2neo/cypher/lexer.py index 385f9645..65683ebf 100644 --- a/py2neo/cypher/lexer.py +++ b/py2neo/cypher/lexer.py @@ -1,7 +1,8 @@ #!/usr/bin/env python # -*- encoding: utf-8 -*- -# Copyright 2011-2021, Nigel Small +# Copyright (c) "Neo4j" +# Neo4j Sweden AB [https://neo4j.com] # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/py2neo/cypher/proc.py b/py2neo/cypher/proc.py index 78c2e98e..426f099e 100644 --- a/py2neo/cypher/proc.py +++ b/py2neo/cypher/proc.py @@ -1,7 +1,8 @@ #!/usr/bin/env python # -*- encoding: utf-8 -*- -# Copyright 2011-2021, Nigel Small +# Copyright (c) "Neo4j" +# Neo4j Sweden AB [https://neo4j.com] # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/py2neo/cypher/queries.py b/py2neo/cypher/queries.py index 3b06a706..269d9f06 100644 --- a/py2neo/cypher/queries.py +++ b/py2neo/cypher/queries.py @@ -1,7 +1,8 @@ #!/usr/bin/env python # -*- encoding: utf-8 -*- -# Copyright 2011-2021, Nigel Small +# Copyright (c) "Neo4j" +# Neo4j Sweden AB [https://neo4j.com] # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/py2neo/data.py b/py2neo/data.py index 0ad0faef..e284d4a4 100644 --- a/py2neo/data.py +++ b/py2neo/data.py @@ -1,7 +1,8 @@ #!/usr/bin/env python # -*- encoding: utf-8 -*- -# Copyright 2011-2021, Nigel Small +# Copyright (c) "Neo4j" +# Neo4j Sweden AB [https://neo4j.com] # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/py2neo/database.py b/py2neo/database.py index 4fa1c6e5..25a0e419 100644 --- a/py2neo/database.py +++ b/py2neo/database.py @@ -1,7 +1,8 @@ #!/usr/bin/env python # -*- encoding: utf-8 -*- -# Copyright 2011-2021, Nigel Small +# Copyright (c) "Neo4j" +# Neo4j Sweden AB [https://neo4j.com] # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/py2neo/errors.py b/py2neo/errors.py index 4509acc9..8d3a6d5c 100644 --- a/py2neo/errors.py +++ b/py2neo/errors.py @@ -1,7 +1,8 @@ #!/usr/bin/env python # -*- encoding: utf-8 -*- -# Copyright 2011-2021, Nigel Small +# Copyright (c) "Neo4j" +# Neo4j Sweden AB [https://neo4j.com] # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/py2neo/integration/__init__.py b/py2neo/integration/__init__.py index 639494f1..b753189b 100644 --- a/py2neo/integration/__init__.py +++ b/py2neo/integration/__init__.py @@ -1,7 +1,8 @@ #!/usr/bin/env python # -*- encoding: utf-8 -*- -# Copyright 2011-2021, Nigel Small +# Copyright (c) "Neo4j" +# Neo4j Sweden AB [https://neo4j.com] # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/py2neo/integration/numpy.py b/py2neo/integration/numpy.py index e92de1e0..45fb5acd 100644 --- a/py2neo/integration/numpy.py +++ b/py2neo/integration/numpy.py @@ -1,7 +1,8 @@ #!/usr/bin/env python # -*- encoding: utf-8 -*- -# Copyright 2011-2021, Nigel Small +# Copyright (c) "Neo4j" +# Neo4j Sweden AB [https://neo4j.com] # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/py2neo/integration/pandas.py b/py2neo/integration/pandas.py index 497899a8..0b365105 100644 --- a/py2neo/integration/pandas.py +++ b/py2neo/integration/pandas.py @@ -1,7 +1,8 @@ #!/usr/bin/env python # -*- encoding: utf-8 -*- -# Copyright 2011-2021, Nigel Small +# Copyright (c) "Neo4j" +# Neo4j Sweden AB [https://neo4j.com] # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/py2neo/integration/sympy.py b/py2neo/integration/sympy.py index 8bbccf56..74d162df 100644 --- a/py2neo/integration/sympy.py +++ b/py2neo/integration/sympy.py @@ -1,7 +1,8 @@ #!/usr/bin/env python # -*- encoding: utf-8 -*- -# Copyright 2011-2021, Nigel Small +# Copyright (c) "Neo4j" +# Neo4j Sweden AB [https://neo4j.com] # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/py2neo/matching.py b/py2neo/matching.py index 8ca36c51..6702ad8e 100644 --- a/py2neo/matching.py +++ b/py2neo/matching.py @@ -1,7 +1,8 @@ #!/usr/bin/env python # -*- encoding: utf-8 -*- -# Copyright 2011-2021, Nigel Small +# Copyright (c) "Neo4j" +# Neo4j Sweden AB [https://neo4j.com] # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/py2neo/meta.py b/py2neo/meta.py index 524ade4b..a3a32732 100644 --- a/py2neo/meta.py +++ b/py2neo/meta.py @@ -1,7 +1,8 @@ #!/usr/bin/env python # -*- encoding: utf-8 -*- -# Copyright 2011-2021, Nigel Small +# Copyright (c) "Neo4j" +# Neo4j Sweden AB [https://neo4j.com] # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -128,15 +129,15 @@ def get_version_data(): def get_metadata(): version_data = get_version_data() - source_url = "https://github.com/technige/py2neo" + source_url = "https://github.com/neo4j-contrib/py2neo" release = version_data["release"] return { "name": PACKAGE_NAME, "version": (version_data["string"]), "description": PACKAGE_DESCRIPTION, - "author": "Nigel Small", - "author_email": "technige@py2neo.org", + "author": "Neo4j, Inc.", + "author_email": "drivers@neo4j.com", "url": "https://py2neo.org/", "project_urls": { "Bug Tracker": "{}/issues".format(source_url), diff --git a/py2neo/movies/__init__.py b/py2neo/movies/__init__.py index b2344f0f..511c1787 100644 --- a/py2neo/movies/__init__.py +++ b/py2neo/movies/__init__.py @@ -1,7 +1,8 @@ #!/usr/bin/env python # -*- encoding: utf-8 -*- -# Copyright 2011-2021, Nigel Small +# Copyright (c) "Neo4j" +# Neo4j Sweden AB [https://neo4j.com] # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/py2neo/ogm/__init__.py b/py2neo/ogm/__init__.py index f4185e00..2cb0cd65 100644 --- a/py2neo/ogm/__init__.py +++ b/py2neo/ogm/__init__.py @@ -1,7 +1,8 @@ #!/usr/bin/env python # -*- encoding: utf-8 -*- -# Copyright 2011-2021, Nigel Small +# Copyright (c) "Neo4j" +# Neo4j Sweden AB [https://neo4j.com] # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -481,7 +482,7 @@ def __eq__(self, other): # isn't yet set, assume the objects are # not equal. # - # See https://github.com/technige/py2neo/issues/839 + # See https://github.com/neo4j-contrib/py2neo/issues/839 # return False else: diff --git a/py2neo/ogm/models/__init__.py b/py2neo/ogm/models/__init__.py index 43c8c777..955df6c8 100644 --- a/py2neo/ogm/models/__init__.py +++ b/py2neo/ogm/models/__init__.py @@ -1,7 +1,8 @@ #!/usr/bin/env python # -*- encoding: utf-8 -*- -# Copyright 2011-2021, Nigel Small +# Copyright (c) "Neo4j" +# Neo4j Sweden AB [https://neo4j.com] # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/py2neo/ogm/models/movies.py b/py2neo/ogm/models/movies.py index df7d5d92..3ef7b1f0 100644 --- a/py2neo/ogm/models/movies.py +++ b/py2neo/ogm/models/movies.py @@ -1,7 +1,8 @@ #!/usr/bin/env python # -*- encoding: utf-8 -*- -# Copyright 2011-2021, Nigel Small +# Copyright (c) "Neo4j" +# Neo4j Sweden AB [https://neo4j.com] # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/py2neo/pep249.py b/py2neo/pep249.py index 82f52e4d..db178903 100644 --- a/py2neo/pep249.py +++ b/py2neo/pep249.py @@ -1,7 +1,8 @@ #!/usr/bin/env python # -*- encoding: utf-8 -*- -# Copyright 2011-2021, Nigel Small +# Copyright (c) "Neo4j" +# Neo4j Sweden AB [https://neo4j.com] # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/py2neo/timing.py b/py2neo/timing.py index 3f1a274e..df730f1d 100644 --- a/py2neo/timing.py +++ b/py2neo/timing.py @@ -1,7 +1,8 @@ #!/usr/bin/env python # -*- encoding: utf-8 -*- -# Copyright 2011-2021, Nigel Small +# Copyright (c) "Neo4j" +# Neo4j Sweden AB [https://neo4j.com] # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/py2neo/wiring.py b/py2neo/wiring.py index df86203b..777ce598 100644 --- a/py2neo/wiring.py +++ b/py2neo/wiring.py @@ -1,7 +1,8 @@ #!/usr/bin/env python # -*- encoding: utf-8 -*- -# Copyright 2011-2021, Nigel Small +# Copyright (c) "Neo4j" +# Neo4j Sweden AB [https://neo4j.com] # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/setup.py b/setup.py index cc189b1b..ad0f8823 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,8 @@ #!/usr/bin/env python # -*- encoding: utf-8 -*- -# Copyright 2011-2021, Nigel Small +# Copyright (c) "Neo4j" +# Neo4j Sweden AB [https://neo4j.com] # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/test/fixtures/ogm.py b/test/fixtures/ogm.py index f99c5864..ab8b9691 100644 --- a/test/fixtures/ogm.py +++ b/test/fixtures/ogm.py @@ -1,7 +1,8 @@ #!/usr/bin/env python # -*- encoding: utf-8 -*- -# Copyright 2011-2021, Nigel Small +# Copyright (c) "Neo4j" +# Neo4j Sweden AB [https://neo4j.com] # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/test/integration/bulk/__init__.py b/test/integration/bulk/__init__.py index 43c8c777..955df6c8 100644 --- a/test/integration/bulk/__init__.py +++ b/test/integration/bulk/__init__.py @@ -1,7 +1,8 @@ #!/usr/bin/env python # -*- encoding: utf-8 -*- -# Copyright 2011-2021, Nigel Small +# Copyright (c) "Neo4j" +# Neo4j Sweden AB [https://neo4j.com] # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/test/integration/bulk/conftest.py b/test/integration/bulk/conftest.py index 0062153d..a92109e2 100644 --- a/test/integration/bulk/conftest.py +++ b/test/integration/bulk/conftest.py @@ -1,7 +1,8 @@ #!/usr/bin/env python # -*- encoding: utf-8 -*- -# Copyright 2011-2021, Nigel Small +# Copyright (c) "Neo4j" +# Neo4j Sweden AB [https://neo4j.com] # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/test/integration/bulk/test_operations.py b/test/integration/bulk/test_operations.py index c1008b78..758e881d 100644 --- a/test/integration/bulk/test_operations.py +++ b/test/integration/bulk/test_operations.py @@ -1,7 +1,8 @@ #!/usr/bin/env python # -*- encoding: utf-8 -*- -# Copyright 2011-2021, Nigel Small +# Copyright (c) "Neo4j" +# Neo4j Sweden AB [https://neo4j.com] # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/test/integration/client/conftest.py b/test/integration/client/conftest.py index c12de774..ee64b38c 100644 --- a/test/integration/client/conftest.py +++ b/test/integration/client/conftest.py @@ -1,7 +1,8 @@ #!/usr/bin/env python # -*- encoding: utf-8 -*- -# Copyright 2011-2021, Nigel Small +# Copyright (c) "Neo4j" +# Neo4j Sweden AB [https://neo4j.com] # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/test/integration/client/test_bolt.py b/test/integration/client/test_bolt.py index 0b94f9a0..2e4be4c6 100644 --- a/test/integration/client/test_bolt.py +++ b/test/integration/client/test_bolt.py @@ -1,7 +1,8 @@ #!/usr/bin/env python # -*- encoding: utf-8 -*- -# Copyright 2011-2021, Nigel Small +# Copyright (c) "Neo4j" +# Neo4j Sweden AB [https://neo4j.com] # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/test/integration/client/test_connection.py b/test/integration/client/test_connection.py index e5d0c8dd..a9b3c408 100644 --- a/test/integration/client/test_connection.py +++ b/test/integration/client/test_connection.py @@ -1,7 +1,8 @@ #!/usr/bin/env python # -*- encoding: utf-8 -*- -# Copyright 2011-2021, Nigel Small +# Copyright (c) "Neo4j" +# Neo4j Sweden AB [https://neo4j.com] # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/test/integration/client/test_connector.py b/test/integration/client/test_connector.py index 9ae74466..b60fb7b0 100644 --- a/test/integration/client/test_connector.py +++ b/test/integration/client/test_connector.py @@ -1,7 +1,8 @@ #!/usr/bin/env python # -*- encoding: utf-8 -*- -# Copyright 2011-2021, Nigel Small +# Copyright (c) "Neo4j" +# Neo4j Sweden AB [https://neo4j.com] # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/test/integration/conftest.py b/test/integration/conftest.py index 32104ad9..e7450f26 100644 --- a/test/integration/conftest.py +++ b/test/integration/conftest.py @@ -1,7 +1,8 @@ #!/usr/bin/env python # -*- encoding: utf-8 -*- -# Copyright 2011-2021, Nigel Small +# Copyright (c) "Neo4j" +# Neo4j Sweden AB [https://neo4j.com] # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/test/integration/ogm/test_ogm.py b/test/integration/ogm/test_ogm.py index 295d1748..49c7cd81 100644 --- a/test/integration/ogm/test_ogm.py +++ b/test/integration/ogm/test_ogm.py @@ -1,7 +1,8 @@ #!/usr/bin/env python # -*- encoding: utf-8 -*- -# Copyright 2011-2021, Nigel Small +# Copyright (c) "Neo4j" +# Neo4j Sweden AB [https://neo4j.com] # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/test/integration/ogm/test_ogm_movies.py b/test/integration/ogm/test_ogm_movies.py index a5058636..523e6461 100644 --- a/test/integration/ogm/test_ogm_movies.py +++ b/test/integration/ogm/test_ogm_movies.py @@ -1,7 +1,8 @@ #!/usr/bin/env python # -*- encoding: utf-8 -*- -# Copyright 2011-2021, Nigel Small +# Copyright (c) "Neo4j" +# Neo4j Sweden AB [https://neo4j.com] # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/test/integration/test_create.py b/test/integration/test_create.py index 22112477..9f22f027 100644 --- a/test/integration/test_create.py +++ b/test/integration/test_create.py @@ -1,7 +1,8 @@ #!/usr/bin/env python # -*- encoding: utf-8 -*- -# Copyright 2011-2021, Nigel Small +# Copyright (c) "Neo4j" +# Neo4j Sweden AB [https://neo4j.com] # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/test/integration/test_cursor.py b/test/integration/test_cursor.py index ca6688e2..22b96931 100644 --- a/test/integration/test_cursor.py +++ b/test/integration/test_cursor.py @@ -1,7 +1,8 @@ #!/usr/bin/env python # -*- encoding: utf-8 -*- -# Copyright 2011-2021, Nigel Small +# Copyright (c) "Neo4j" +# Neo4j Sweden AB [https://neo4j.com] # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/test/integration/test_cypher_execution.py b/test/integration/test_cypher_execution.py index 16325e41..88cfd883 100644 --- a/test/integration/test_cypher_execution.py +++ b/test/integration/test_cypher_execution.py @@ -1,7 +1,8 @@ #!/usr/bin/env python # -*- encoding: utf-8 -*- -# Copyright 2011-2021, Nigel Small +# Copyright (c) "Neo4j" +# Neo4j Sweden AB [https://neo4j.com] # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/test/integration/test_delete.py b/test/integration/test_delete.py index db4c6852..5ac794cd 100644 --- a/test/integration/test_delete.py +++ b/test/integration/test_delete.py @@ -1,7 +1,8 @@ #!/usr/bin/env python # -*- encoding: utf-8 -*- -# Copyright 2011-2021, Nigel Small +# Copyright (c) "Neo4j" +# Neo4j Sweden AB [https://neo4j.com] # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/test/integration/test_errors.py b/test/integration/test_errors.py index 09c038a3..ae77592b 100644 --- a/test/integration/test_errors.py +++ b/test/integration/test_errors.py @@ -1,7 +1,8 @@ #!/usr/bin/env python # -*- encoding: utf-8 -*- -# Copyright 2011-2021, Nigel Small +# Copyright (c) "Neo4j" +# Neo4j Sweden AB [https://neo4j.com] # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/test/integration/test_exists.py b/test/integration/test_exists.py index cd4909f1..7d6df938 100644 --- a/test/integration/test_exists.py +++ b/test/integration/test_exists.py @@ -1,7 +1,8 @@ #!/usr/bin/env python # -*- encoding: utf-8 -*- -# Copyright 2011-2021, Nigel Small +# Copyright (c) "Neo4j" +# Neo4j Sweden AB [https://neo4j.com] # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/test/integration/test_graph.py b/test/integration/test_graph.py index c6b3d729..1b5d5854 100644 --- a/test/integration/test_graph.py +++ b/test/integration/test_graph.py @@ -1,7 +1,8 @@ #!/usr/bin/env python # -*- encoding: utf-8 -*- -# Copyright 2011-2021, Nigel Small +# Copyright (c) "Neo4j" +# Neo4j Sweden AB [https://neo4j.com] # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/test/integration/test_graph_service.py b/test/integration/test_graph_service.py index 44479dba..15baf872 100644 --- a/test/integration/test_graph_service.py +++ b/test/integration/test_graph_service.py @@ -1,7 +1,8 @@ #!/usr/bin/env python # -*- encoding: utf-8 -*- -# Copyright 2011-2021, Nigel Small +# Copyright (c) "Neo4j" +# Neo4j Sweden AB [https://neo4j.com] # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/test/integration/test_match.py b/test/integration/test_match.py index d4253155..dd187274 100644 --- a/test/integration/test_match.py +++ b/test/integration/test_match.py @@ -1,7 +1,8 @@ #!/usr/bin/env python # -*- encoding: utf-8 -*- -# Copyright 2011-2021, Nigel Small +# Copyright (c) "Neo4j" +# Neo4j Sweden AB [https://neo4j.com] # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/test/integration/test_merge.py b/test/integration/test_merge.py index 3fa31594..0e3580e5 100644 --- a/test/integration/test_merge.py +++ b/test/integration/test_merge.py @@ -1,7 +1,8 @@ #!/usr/bin/env python # -*- encoding: utf-8 -*- -# Copyright 2011-2021, Nigel Small +# Copyright (c) "Neo4j" +# Neo4j Sweden AB [https://neo4j.com] # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/test/integration/test_multiprocessing.py b/test/integration/test_multiprocessing.py index 50a63d02..bfa69c50 100644 --- a/test/integration/test_multiprocessing.py +++ b/test/integration/test_multiprocessing.py @@ -1,7 +1,8 @@ #!/usr/bin/env python # -*- encoding: utf-8 -*- -# Copyright 2011-2021, Nigel Small +# Copyright (c) "Neo4j" +# Neo4j Sweden AB [https://neo4j.com] # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/test/integration/test_node.py b/test/integration/test_node.py index 991d508a..62019642 100644 --- a/test/integration/test_node.py +++ b/test/integration/test_node.py @@ -1,7 +1,8 @@ #!/usr/bin/env python # -*- encoding: utf-8 -*- -# Copyright 2011-2021, Nigel Small +# Copyright (c) "Neo4j" +# Neo4j Sweden AB [https://neo4j.com] # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/test/integration/test_node_matcher.py b/test/integration/test_node_matcher.py index e9e6069e..407169b4 100644 --- a/test/integration/test_node_matcher.py +++ b/test/integration/test_node_matcher.py @@ -1,7 +1,8 @@ #!/usr/bin/env python # -*- encoding: utf-8 -*- -# Copyright 2011-2021, Nigel Small +# Copyright (c) "Neo4j" +# Neo4j Sweden AB [https://neo4j.com] # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/test/integration/test_path.py b/test/integration/test_path.py index 22a2825a..4c047221 100644 --- a/test/integration/test_path.py +++ b/test/integration/test_path.py @@ -1,7 +1,8 @@ #!/usr/bin/env python # -*- encoding: utf-8 -*- -# Copyright 2011-2021, Nigel Small +# Copyright (c) "Neo4j" +# Neo4j Sweden AB [https://neo4j.com] # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/test/integration/test_pep249.py b/test/integration/test_pep249.py index 91706070..92b7ce6e 100644 --- a/test/integration/test_pep249.py +++ b/test/integration/test_pep249.py @@ -1,7 +1,8 @@ #!/usr/bin/env python # -*- encoding: utf-8 -*- -# Copyright 2011-2021, Nigel Small +# Copyright (c) "Neo4j" +# Neo4j Sweden AB [https://neo4j.com] # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/test/integration/test_pull.py b/test/integration/test_pull.py index 35c4b3dc..1243f86e 100644 --- a/test/integration/test_pull.py +++ b/test/integration/test_pull.py @@ -1,7 +1,8 @@ #!/usr/bin/env python # -*- encoding: utf-8 -*- -# Copyright 2011-2021, Nigel Small +# Copyright (c) "Neo4j" +# Neo4j Sweden AB [https://neo4j.com] # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/test/integration/test_push.py b/test/integration/test_push.py index 7a307942..b0e6e005 100644 --- a/test/integration/test_push.py +++ b/test/integration/test_push.py @@ -1,7 +1,8 @@ #!/usr/bin/env python # -*- encoding: utf-8 -*- -# Copyright 2011-2021, Nigel Small +# Copyright (c) "Neo4j" +# Neo4j Sweden AB [https://neo4j.com] # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/test/integration/test_relationship.py b/test/integration/test_relationship.py index 9e14f283..8254565e 100644 --- a/test/integration/test_relationship.py +++ b/test/integration/test_relationship.py @@ -1,7 +1,8 @@ #!/usr/bin/env python # -*- encoding: utf-8 -*- -# Copyright 2011-2021, Nigel Small +# Copyright (c) "Neo4j" +# Neo4j Sweden AB [https://neo4j.com] # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/test/integration/test_schema.py b/test/integration/test_schema.py index 5812734b..3e9fe5a4 100644 --- a/test/integration/test_schema.py +++ b/test/integration/test_schema.py @@ -1,7 +1,8 @@ #!/usr/bin/env python # -*- encoding: utf-8 -*- -# Copyright 2011-2021, Nigel Small +# Copyright (c) "Neo4j" +# Neo4j Sweden AB [https://neo4j.com] # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/test/integration/test_separate.py b/test/integration/test_separate.py index 05101148..4e15e8a1 100644 --- a/test/integration/test_separate.py +++ b/test/integration/test_separate.py @@ -1,7 +1,8 @@ #!/usr/bin/env python # -*- encoding: utf-8 -*- -# Copyright 2011-2021, Nigel Small +# Copyright (c) "Neo4j" +# Neo4j Sweden AB [https://neo4j.com] # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/test/integration/test_table.py b/test/integration/test_table.py index df974143..371fc443 100644 --- a/test/integration/test_table.py +++ b/test/integration/test_table.py @@ -1,7 +1,8 @@ #!/usr/bin/env python # -*- encoding: utf-8 -*- -# Copyright 2011-2021, Nigel Small +# Copyright (c) "Neo4j" +# Neo4j Sweden AB [https://neo4j.com] # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/test/integration/test_types.py b/test/integration/test_types.py index f9e8e607..babe6517 100644 --- a/test/integration/test_types.py +++ b/test/integration/test_types.py @@ -1,7 +1,8 @@ #!/usr/bin/env python # -*- encoding: utf-8 -*- -# Copyright 2011-2021, Nigel Small +# Copyright (c) "Neo4j" +# Neo4j Sweden AB [https://neo4j.com] # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/test/unit/client/test_config.py b/test/unit/client/test_config.py index 32f0d0da..38a9d200 100644 --- a/test/unit/client/test_config.py +++ b/test/unit/client/test_config.py @@ -1,7 +1,8 @@ #!/usr/bin/env python # -*- encoding: utf-8 -*- -# Copyright 2011-2021, Nigel Small +# Copyright (c) "Neo4j" +# Neo4j Sweden AB [https://neo4j.com] # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/test/unit/cypher/test_encoding.py b/test/unit/cypher/test_encoding.py index e60f97b8..91c2bb4d 100644 --- a/test/unit/cypher/test_encoding.py +++ b/test/unit/cypher/test_encoding.py @@ -1,7 +1,8 @@ #!/usr/bin/env python # -*- encoding: utf-8 -*- -# Copyright 2011-2021, Nigel Small +# Copyright (c) "Neo4j" +# Neo4j Sweden AB [https://neo4j.com] # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/test/unit/cypher/test_lexer.py b/test/unit/cypher/test_lexer.py index c094183d..388381e9 100644 --- a/test/unit/cypher/test_lexer.py +++ b/test/unit/cypher/test_lexer.py @@ -1,7 +1,8 @@ #!/usr/bin/env python # -*- encoding: utf-8 -*- -# Copyright 2011-2021, Nigel Small +# Copyright (c) "Neo4j" +# Neo4j Sweden AB [https://neo4j.com] # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/test/unit/cypher/test_queries.py b/test/unit/cypher/test_queries.py index 06474777..48c48dd0 100644 --- a/test/unit/cypher/test_queries.py +++ b/test/unit/cypher/test_queries.py @@ -1,7 +1,8 @@ #!/usr/bin/env python # -*- encoding: utf-8 -*- -# Copyright 2011-2021, Nigel Small +# Copyright (c) "Neo4j" +# Neo4j Sweden AB [https://neo4j.com] # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/test/unit/database/test_work.py b/test/unit/database/test_work.py index c5e1f44e..17c36863 100644 --- a/test/unit/database/test_work.py +++ b/test/unit/database/test_work.py @@ -1,7 +1,8 @@ #!/usr/bin/env python # -*- encoding: utf-8 -*- -# Copyright 2011-2021, Nigel Small +# Copyright (c) "Neo4j" +# Neo4j Sweden AB [https://neo4j.com] # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/test/unit/ogm/test_ogm.py b/test/unit/ogm/test_ogm.py index bad20fef..63a1d9c9 100644 --- a/test/unit/ogm/test_ogm.py +++ b/test/unit/ogm/test_ogm.py @@ -1,7 +1,8 @@ #!/usr/bin/env python # -*- encoding: utf-8 -*- -# Copyright 2011-2021, Nigel Small +# Copyright (c) "Neo4j" +# Neo4j Sweden AB [https://neo4j.com] # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -114,7 +115,7 @@ def test_instance_property_key_can_be_overridden(self): def test_uniqueness_with_no_id(): - # Test added to solve https://github.com/technige/py2neo/issues/839 + # Test added to solve https://github.com/neo4j-contrib/py2neo/issues/839 class Page(Model): name = Property() diff --git a/test/unit/ogm/test_relatedobjects.py b/test/unit/ogm/test_relatedobjects.py index 4533e877..b4f0c901 100644 --- a/test/unit/ogm/test_relatedobjects.py +++ b/test/unit/ogm/test_relatedobjects.py @@ -1,7 +1,8 @@ #!/usr/bin/env python # -*- encoding: utf-8 -*- -# Copyright 2011-2021, Nigel Small +# Copyright (c) "Neo4j" +# Neo4j Sweden AB [https://neo4j.com] # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/test/unit/test_addressing.py b/test/unit/test_addressing.py index 5295402f..93bb4f2a 100644 --- a/test/unit/test_addressing.py +++ b/test/unit/test_addressing.py @@ -1,7 +1,8 @@ #!/usr/bin/env python # -*- encoding: utf-8 -*- -# Copyright 2011-2021, Nigel Small +# Copyright (c) "Neo4j" +# Neo4j Sweden AB [https://neo4j.com] # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/test/unit/test_data.py b/test/unit/test_data.py index a39f2536..3f20504c 100644 --- a/test/unit/test_data.py +++ b/test/unit/test_data.py @@ -1,7 +1,8 @@ #!/usr/bin/env python # -*- encoding: utf-8 -*- -# Copyright 2011-2021, Nigel Small +# Copyright (c) "Neo4j" +# Neo4j Sweden AB [https://neo4j.com] # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/test/unit/test_database.py b/test/unit/test_database.py index 43c8c777..955df6c8 100644 --- a/test/unit/test_database.py +++ b/test/unit/test_database.py @@ -1,7 +1,8 @@ #!/usr/bin/env python # -*- encoding: utf-8 -*- -# Copyright 2011-2021, Nigel Small +# Copyright (c) "Neo4j" +# Neo4j Sweden AB [https://neo4j.com] # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/test/unit/test_errors.py b/test/unit/test_errors.py index 656906de..c9ca0160 100644 --- a/test/unit/test_errors.py +++ b/test/unit/test_errors.py @@ -1,7 +1,8 @@ #!/usr/bin/env python # -*- encoding: utf-8 -*- -# Copyright 2011-2021, Nigel Small +# Copyright (c) "Neo4j" +# Neo4j Sweden AB [https://neo4j.com] # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/test/unit/test_profiles.py b/test/unit/test_profiles.py index 7d458b01..e5b897a8 100644 --- a/test/unit/test_profiles.py +++ b/test/unit/test_profiles.py @@ -1,7 +1,8 @@ #!/usr/bin/env python # -*- encoding: utf-8 -*- -# Copyright 2011-2021, Nigel Small +# Copyright (c) "Neo4j" +# Neo4j Sweden AB [https://neo4j.com] # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/test/unit/test_wiring.py b/test/unit/test_wiring.py index 12277343..c4e3b93a 100644 --- a/test/unit/test_wiring.py +++ b/test/unit/test_wiring.py @@ -1,7 +1,8 @@ #!/usr/bin/env python # -*- encoding: utf-8 -*- -# Copyright 2011-2021, Nigel Small +# Copyright (c) "Neo4j" +# Neo4j Sweden AB [https://neo4j.com] # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/test/vendor/grolt/NOTICE b/test/vendor/grolt/NOTICE index 7a395a5c..adedfc1f 100644 --- a/test/vendor/grolt/NOTICE +++ b/test/vendor/grolt/NOTICE @@ -1,2 +1,3 @@ grolt -Copyright (c) 2011-2021 Nigel Small +Copyright (c) "Neo4j" +Neo4j Sweden AB [https://neo4j.com] diff --git a/test/vendor/grolt/grolt/__init__.py b/test/vendor/grolt/grolt/__init__.py index ca13cb7d..38dd73bd 100644 --- a/test/vendor/grolt/grolt/__init__.py +++ b/test/vendor/grolt/grolt/__init__.py @@ -1,7 +1,8 @@ #!/usr/bin/env python # -*- encoding: utf-8 -*- -# Copyright 2011-2021, Nigel Small +# Copyright (c) "Neo4j" +# Neo4j Sweden AB [https://neo4j.com] # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/test/vendor/grolt/grolt/__main__.py b/test/vendor/grolt/grolt/__main__.py index dc9b0074..7b05fa9a 100644 --- a/test/vendor/grolt/grolt/__main__.py +++ b/test/vendor/grolt/grolt/__main__.py @@ -1,7 +1,8 @@ #!/usr/bin/env python # -*- encoding: utf-8 -*- -# Copyright 2011-2021, Nigel Small +# Copyright (c) "Neo4j" +# Neo4j Sweden AB [https://neo4j.com] # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/test/vendor/grolt/grolt/images.py b/test/vendor/grolt/grolt/images.py index fc4ff1e0..15b6c0aa 100644 --- a/test/vendor/grolt/grolt/images.py +++ b/test/vendor/grolt/grolt/images.py @@ -1,7 +1,8 @@ #!/usr/bin/env python # -*- encoding: utf-8 -*- -# Copyright 2011-2021, Nigel Small +# Copyright (c) "Neo4j" +# Neo4j Sweden AB [https://neo4j.com] # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/test/vendor/grolt/grolt/security/__init__.py b/test/vendor/grolt/grolt/security/__init__.py index f253743d..52e6e426 100644 --- a/test/vendor/grolt/grolt/security/__init__.py +++ b/test/vendor/grolt/grolt/security/__init__.py @@ -1,7 +1,8 @@ #!/usr/bin/env python # -*- encoding: utf-8 -*- -# Copyright 2011-2021, Nigel Small +# Copyright (c) "Neo4j" +# Neo4j Sweden AB [https://neo4j.com] # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/test/vendor/grolt/grolt/security/_cryptography.py b/test/vendor/grolt/grolt/security/_cryptography.py index cf571725..b14fb0ae 100644 --- a/test/vendor/grolt/grolt/security/_cryptography.py +++ b/test/vendor/grolt/grolt/security/_cryptography.py @@ -1,7 +1,8 @@ #!/usr/bin/env python # -*- encoding: utf-8 -*- -# Copyright 2011-2021, Nigel Small +# Copyright (c) "Neo4j" +# Neo4j Sweden AB [https://neo4j.com] # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/test/vendor/grolt/setup.py b/test/vendor/grolt/setup.py index 045d1752..66ea2b1b 100644 --- a/test/vendor/grolt/setup.py +++ b/test/vendor/grolt/setup.py @@ -1,7 +1,8 @@ #!/usr/bin/env python # -*- encoding: utf-8 -*- -# Copyright 2011-2021, Nigel Small +# Copyright (c) "Neo4j" +# Neo4j Sweden AB [https://neo4j.com] # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -24,10 +25,10 @@ "name": "grolt", "version": "1.0.7", "description": "Docker-based development and testing framework for Neo4j", - "long_description": "Please see https://github.com/technige/grolt " + "long_description": "Please see https://github.com/neo4j-contrib/grolt " "for details.", - "author": "Nigel Small", - "author_email": "technige@py2neo.org", + "author": "Neo4j, Inc.", + "author_email": "drivers@neo4j.com", "entry_points": { "console_scripts": [ "grolt = grolt.__main__:grolt",