Skip to content

Commit 61ffc7f

Browse files
committed
Fixed license
1 parent 580e62e commit 61ffc7f

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ requires-python = ">=3.9"
77
authors = [
88
{ name = "Pyosch", email = "[email protected]" }
99
]
10+
license = {text = "GNU General Public License v3 (GPLv3)"}
1011
classifiers = [
1112
"Development Status :: 4 - Beta",
1213
"Programming Language :: Python :: 3.9",
@@ -18,11 +19,10 @@ classifiers = [
1819
"Operating System :: OS Independent"
1920
]
2021

21-
dynamic = ["dependencies", "version", "license"]
22+
dynamic = ["dependencies", "version"]
2223

2324
[tool.setuptools.dynamic]
2425
version = {attr = "vpplib.__version__"}
25-
license = {attr = "vpplib.__license__"}
2626
dependencies = {file = "requirements.txt"}
2727

2828
[tool.setuptools.packages.find]

vpplib/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
__title__ = "vpplib"
22
__version__ = "0.0.5"
3-
__license__ = "GPL-3.0"
3+
__license__ = "GNU General Public License v3 (GPLv3)"
44

55
from .battery_electric_vehicle import BatteryElectricVehicle
66
from .combined_heat_and_power import CombinedHeatAndPower

0 commit comments

Comments
 (0)