|
1 | | -[tool.poetry] |
| 1 | +[project] |
2 | 2 | name = "wakeonlan" |
3 | 3 | version = "3.1.0" |
4 | 4 | description = "A small python module for wake on lan." |
5 | | -authors = ["Remco Haszing <remcohaszing@gmail.com>"] |
6 | 5 | license = "MIT" |
7 | 6 | readme = "README.rst" |
8 | | -documentation = "http://pywakeonlan.readthedocs.io" |
9 | | -repository = "https://github.com/remcohaszing/pywakeonlan" |
10 | | -classifiers = [ |
11 | | - "Development Status :: 5 - Production/Stable", |
12 | | - "Intended Audience :: Developers", |
13 | | - "Intended Audience :: System Administrators", |
14 | | - "Topic :: System :: Networking", |
15 | | - "Typing :: Typed" |
| 7 | +requires-python = ">=3.7" |
| 8 | +authors = [ |
| 9 | + { name = "Remco Haszing", email = "remcohaszing@gmail.com" } |
16 | 10 | ] |
| 11 | +dynamic = ["classifiers"] |
17 | 12 |
|
18 | | -[tool.poetry.urls] |
| 13 | +[project.urls] |
| 14 | +Source = "https://github.com/remcohaszing/pywakeonlan" |
| 15 | +Documentation = "http://pywakeonlan.readthedocs.io" |
19 | 16 | Changelog = "https://github.com/remcohaszing/pywakeonlan/releases" |
20 | 17 | Issues = "https://github.com/remcohaszing/pywakeonlan/issues" |
21 | | -Sponsor = "https://github.com/sponsors/remcohaszing" |
| 18 | +Funding = "https://github.com/sponsors/remcohaszing" |
22 | 19 |
|
23 | | -[tool.poetry.scripts] |
| 20 | +[project.scripts] |
24 | 21 | wakeonlan = "wakeonlan:main" |
25 | 22 |
|
26 | | -[tool.poetry.dependencies] |
27 | | -python = "^3.7" |
| 23 | +[tool.poetry] |
| 24 | +classifiers = [ |
| 25 | + "Development Status :: 5 - Production/Stable", |
| 26 | + "Intended Audience :: Developers", |
| 27 | + "Intended Audience :: System Administrators", |
| 28 | + "Topic :: System :: Networking", |
| 29 | + "Typing :: Typed" |
| 30 | +] |
28 | 31 |
|
29 | 32 | [tool.poetry.group.dev.dependencies] |
30 | 33 | coverage = { version = "*", extras = ["toml"] } |
|
0 commit comments