diff --git a/LICENSE b/LICENSE index b262ab34..43c41ad7 100644 --- a/LICENSE +++ b/LICENSE @@ -1,4 +1,4 @@ -Copyright (c) 2008-2024 Emmanuel Blot +Copyright (c) 2008-2025 Emmanuel Blot All Rights Reserved. SPDX-License-Identifier: BSD-3-Clause diff --git a/pyftdi/__init__.py b/pyftdi/__init__.py index 3c2620d3..1e7682ba 100644 --- a/pyftdi/__init__.py +++ b/pyftdi/__init__.py @@ -1,4 +1,4 @@ -# Copyright (c) 2010-2024 Emmanuel Blot +# Copyright (c) 2010-2025 Emmanuel Blot # Copyright (c) 2010-2016, Neotion # All rights reserved. # @@ -6,7 +6,7 @@ # pylint: disable=missing-docstring -__version__ = '0.56.0' +__version__ = '0.57.0' __title__ = 'PyFtdi' __description__ = 'FTDI device driver (pure Python)' __uri__ = 'http://github.com/eblot/pyftdi' @@ -14,8 +14,8 @@ __author__ = 'Emmanuel Blot' # For all support requests, please open a new issue on GitHub __email__ = 'emmanuel.blot@free.fr' -__license__ = 'Modified BSD' -__copyright__ = 'Copyright (c) 2011-2024 Emmanuel Blot' +__license__ = 'BSD-3-Clause' +__copyright__ = 'Copyright (c) 2011-2025 Emmanuel Blot' from logging import WARNING, NullHandler, getLogger diff --git a/pyftdi/doc/authors.rst b/pyftdi/doc/authors.rst index 287909c4..fcf9e259 100644 --- a/pyftdi/doc/authors.rst +++ b/pyftdi/doc/authors.rst @@ -53,3 +53,4 @@ Contributors * Mark Mentovai * Alessandro Zini * Sjoerd Simons + * David Schneider diff --git a/pyftdi/doc/conf.py b/pyftdi/doc/conf.py index 191cbd9f..1f42769d 100644 --- a/pyftdi/doc/conf.py +++ b/pyftdi/doc/conf.py @@ -54,7 +54,7 @@ def find_meta(meta): master_doc = 'index' project = find_meta('title') contact = '%s <%s>' % (find_meta('author'), find_meta('email')) -copyright = '2010-2024, %s' % contact +copyright = '2010-2025, %s' % contact show_authors = True html_theme = 'sphinx_rtd_theme' diff --git a/pyftdi/doc/license.rst b/pyftdi/doc/license.rst index 937235f7..fbfd4104 100644 --- a/pyftdi/doc/license.rst +++ b/pyftdi/doc/license.rst @@ -18,7 +18,7 @@ BSD 3-clause :: - Copyright (c) 2008-2021 Emmanuel Blot + Copyright (c) 2008-2025 Emmanuel Blot All Rights Reserved. Redistribution and use in source and binary forms, with or without diff --git a/pyftdi/i2c.py b/pyftdi/i2c.py index 15a1f60d..53086494 100644 --- a/pyftdi/i2c.py +++ b/pyftdi/i2c.py @@ -1,4 +1,4 @@ -# Copyright (c) 2017-2024, Emmanuel Blot +# Copyright (c) 2017-2025, Emmanuel Blot # All rights reserved. # # SPDX-License-Identifier: BSD-3-Clause diff --git a/setup.cfg b/setup.cfg index 28e40d98..da31f73b 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,6 +3,9 @@ [metadata] license_files = pyftdi/doc/license.rst +[project] +license = "BSD-3-Clause" + [build_sphinx] source-dir = pyftdi/doc build-dir = sphinx diff --git a/setup.py b/setup.py index c9be82f9..e8de6e2a 100755 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- # -# Copyright (c) 2010-2024 Emmanuel Blot +# Copyright (c) 2010-2025 Emmanuel Blot # Copyright (c) 2010-2016 Neotion # All rights reserved. # @@ -32,7 +32,6 @@ 'Environment :: Other Environment', 'Natural Language :: English', 'Intended Audience :: Developers', - 'License :: OSI Approved :: BSD License', 'Operating System :: MacOS :: MacOS X', 'Operating System :: POSIX', 'Programming Language :: Python :: 3.9',