Skip to content

Commit

Permalink
Fix the license entry in the setup file
Browse files Browse the repository at this point in the history
PyGreSQL is licensed under the PostgreSQL license (see LICENSE.txt)
and not the Python Software Foundation license.
  • Loading branch information
Cito committed Nov 24, 2017
1 parent cfbb3a0 commit 78c13a2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions LICENSE.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ Further modifications copyright (c) 1997-2008 by D'Arcy J.M. Cain

Further modifications copyright (c) 2009-2017 by the PyGreSQL team.

PyGreSQL is released under the PostgreSQL License, a liberal Open Source
license, similar to the BSD or MIT licenses:

Permission to use, copy, modify, and distribute this software and its
documentation for any purpose, without fee, and without a written agreement
is hereby granted, provided that the above copyright notice and this
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ def finalize_options(self):
url="http://www.pygresql.org",
download_url="http://www.pygresql.org/download/",
platforms=["any"],
license="Python",
license="PostgreSQL",
py_modules=py_modules,
ext_modules=[Extension('_pg', c_sources,
include_dirs=include_dirs, library_dirs=library_dirs,
Expand All @@ -192,7 +192,7 @@ def finalize_options(self):
classifiers=[
"Development Status :: 6 - Mature",
"Intended Audience :: Developers",
"License :: OSI Approved :: Python Software Foundation License",
"License :: OSI Approved :: The PostgreSQL License",
"Operating System :: OS Independent",
"Programming Language :: C",
'Programming Language :: Python',
Expand Down

0 comments on commit 78c13a2

Please sign in to comment.