File tree Expand file tree Collapse file tree 2 files changed +8
-6
lines changed Expand file tree Collapse file tree 2 files changed +8
-6
lines changed Original file line number Diff line number Diff line change 1
1
[build-system ]
2
2
requires = [
3
3
" setuptools>=67" ,
4
- " wheel" ,
5
4
]
6
5
build-backend = " setuptools.build_meta"
7
6
8
7
[project ]
9
8
name = " OctoPrint-PiSupport"
10
9
version = " 2023.10.10"
10
+ dynamic = [" license" ]
11
11
description = " Provides additional information about your Pi in the UI"
12
12
authors = [
13
13
{
name =
" Gina Häußge" ,
email =
" [email protected] " },
14
14
]
15
- license = {text = " AGPL-3.0-or-later" }
16
- license-files = [" LICENSE" ]
17
15
requires-python = " >=3.7,<4"
18
16
dependencies = []
19
17
@@ -38,9 +36,9 @@ content-type = "markdown"
38
36
39
37
[tool .setuptools ]
40
38
include-package-data = true
41
- packages = [
42
- " octoprint_pi_support " ,
43
- ]
39
+
40
+ [ tool . setuptools . packages . find ]
41
+ include = [ " octoprint_pi_support " , " octoprint_pi_support.* " ]
44
42
45
43
[tool .ruff ]
46
44
exclude = [
Original file line number Diff line number Diff line change
1
+ import setuptools
2
+
3
+ # we define the license string like this to be backwards compatible to setuptools<77
4
+ setuptools .setup (license = "AGPL-3.0-or-later" )
You can’t perform that action at this time.
0 commit comments