From 42e405e1d586017517fdb86e0d44cc8446648af3 Mon Sep 17 00:00:00 2001 From: Rohit Sanjay Date: Tue, 21 Feb 2023 10:31:28 -0800 Subject: [PATCH 1/2] Update package name to pygit2-noteable --- setup.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/setup.py b/setup.py index e8b855055..21dce4fa0 100644 --- a/setup.py +++ b/setup.py @@ -136,14 +136,14 @@ def run(self): install_requires = f.read().splitlines() setup( - name='pygit2', + name='pygit2-noteable', description='Python bindings for libgit2.', keywords='git', version=__version__, classifiers=classifiers, license='GPLv2 with linking exception', - maintainer='J. David Ibáñez', - maintainer_email='jdavid.ibp@gmail.com', + maintainer='Noteable (extending from J. David Ibáñez)', + maintainer_email='engineering@noteable.io', long_description=long_description, packages=['pygit2'], package_data={'pygit2': ['decl/*.h', '*.pyi']}, @@ -156,7 +156,7 @@ def run(self): setup_requires=['cffi>=1.9.1'], install_requires=install_requires, # URLs - url='https://github.com/libgit2/pygit2', + url='https://github.com/noteable-io/pygit2', project_urls={ 'Documentation': 'https://www.pygit2.org/', 'Changelog': 'https://github.com/libgit2/pygit2/blob/master/CHANGELOG.rst', From 8842e6c1735c2d727371f143ad32eec3a71c8520 Mon Sep 17 00:00:00 2001 From: Rohit Sanjay Date: Tue, 21 Feb 2023 10:41:33 -0800 Subject: [PATCH 2/2] Trigger CI