Skip to content

Commit 55dcee8

Browse files
committed
Fix builds; correct license attribution
1 parent c91fa74 commit 55dcee8

File tree

10 files changed

+30
-11
lines changed

10 files changed

+30
-11
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2020 FirebirdSQL
3+
Copyright (c) 2020 The Firebird Project (www.firebirdsql.org)
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

pyproject.toml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,10 @@ Source = "https://github.com/FirebirdSQL/python3-driver"
4343
[tool.hatch.version]
4444
path = "src/firebird/driver/__init__.py"
4545

46-
[tool.hatch.build]
46+
[tool.hatch.build.targets.sdist]
47+
include = ["src"]
48+
49+
[tool.hatch.build.targets.wheel]
4750
packages = ["src/firebird"]
4851

4952
[tool.hatch.envs.default]

src/firebird/driver/__init__.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
#coding:utf-8
1+
# SPDX-FileCopyrightText: 2020-present The Firebird Projects <www.firebirdsql.org>
2+
#
3+
# SPDX-License-Identifier: MIT
24
#
35
# PROGRAM/MODULE: firebird-driver
46
# FILE: firebird/driver/__init__.py

src/firebird/driver/config.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
#coding:utf-8
1+
# SPDX-FileCopyrightText: 2020-present The Firebird Projects <www.firebirdsql.org>
2+
#
3+
# SPDX-License-Identifier: MIT
24
#
35
# PROGRAM/MODULE: firebird-driver
46
# FILE: firebird/driver/config.py

src/firebird/driver/core.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
# coding:utf-8
1+
# SPDX-FileCopyrightText: 2020-present The Firebird Projects <www.firebirdsql.org>
2+
#
3+
# SPDX-License-Identifier: MIT
24
#
35
# PROGRAM/MODULE: firebird-driver
46
# FILE: firebird/driver/core.py

src/firebird/driver/fbapi.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
# coding:utf-8
1+
# SPDX-FileCopyrightText: 2020-present The Firebird Projects <www.firebirdsql.org>
2+
#
3+
# SPDX-License-Identifier: MIT
24
#
35
# PROGRAM/MODULE: firebird-driver
46
# FILE: firebird/driver/fbapi.py

src/firebird/driver/hooks.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
#coding:utf-8
1+
# SPDX-FileCopyrightText: 2020-present The Firebird Projects <www.firebirdsql.org>
2+
#
3+
# SPDX-License-Identifier: MIT
24
#
35
# PROGRAM/MODULE: firebird-driver
46
# FILE: firebird/driver/hooks.py

src/firebird/driver/interfaces.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
# coding:utf-8
1+
# SPDX-FileCopyrightText: 2020-present The Firebird Projects <www.firebirdsql.org>
2+
#
3+
# SPDX-License-Identifier: MIT
24
#
35
# PROGRAM/MODULE: firebird-driver
46
# FILE: firebird/driver/interfaces.py

src/firebird/driver/types.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
# coding:utf-8
1+
# SPDX-FileCopyrightText: 2020-present The Firebird Projects <www.firebirdsql.org>
2+
#
3+
# SPDX-License-Identifier: MIT
24
#
35
# PROGRAM/MODULE: firebird-driver
46
# FILE: firebird/driver/types.py

tests/test_driver.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
1-
#coding:utf-8
1+
# SPDX-FileCopyrightText: 2020-present The Firebird Projects <www.firebirdsql.org>
2+
#
3+
# SPDX-License-Identifier: MIT
24
#
35
# PROGRAM/MODULE: firebird-driver
4-
# FILE: test/driver.py
6+
# FILE: tests/test_driver.py
57
# DESCRIPTION: Unit tests for firebird.driver
68
# CREATED: 21.3.2020
79
#

0 commit comments

Comments
 (0)