1
- [tool . poetry ]
1
+ [project ]
2
2
name = " chia-blockchain"
3
- # see [tool.poetry-dynamic-versioning]
4
- version = " 0.0.0"
3
+ dynamic = [ " dependencies" , " version" ]
5
4
description = " Chia blockchain full node, farmer, timelord, and wallet."
6
- authors = [
" Mariano Sorgente <[email protected] >" ]
7
- license = " Apache-2.0"
8
- readme = " README.md"
5
+ requires-python = " >=3.9, <4"
6
+ authors = [
7
+ {
name =
" Mariano Sorgente" ,
email =
" [email protected] " }
8
+ ]
9
+ license = {text =" Apache-2.0" }
10
+ readme = {file = " README.md" , content-type = " text/markdown" }
9
11
keywords = [" chia" , " blockchain" , " node" ]
10
12
homepage = " https://chia.net/"
13
+
14
+ [tool .poetry ]
15
+ # see [tool.poetry-dynamic-versioning]
11
16
packages = [{ include = " chia" }, { include = " mozilla-ca/cacert.pem" }]
17
+ version = " 0.0.0"
12
18
13
- [tool . poetry .scripts ]
19
+ [project .scripts ]
14
20
chia = " chia.cmds.chia:main"
15
21
chia_daemon = " chia.daemon.server:main"
16
22
chia_wallet = " chia.server.start_wallet:main"
@@ -32,12 +38,11 @@ name = "chia"
32
38
url = " https://pypi.chia.net/simple/"
33
39
priority = " supplemental"
34
40
35
- [tool . poetry .urls ]
36
- "Source" = " https://github.com/Chia-Network/chia-blockchain/"
37
- "Changelog" = " https://github.com/Chia-Network/chia-blockchain/blob/main/CHANGELOG.md"
41
+ [project .urls ]
42
+ source = " https://github.com/Chia-Network/chia-blockchain/"
43
+ changelog = " https://github.com/Chia-Network/chia-blockchain/blob/main/CHANGELOG.md"
38
44
39
45
[tool .poetry .dependencies ]
40
- python = " >=3.9, <4"
41
46
aiofiles = " >=24.1.0" # Async IO for files
42
47
aiohttp = " >=3.10.4" # HTTP server for full node rpc
43
48
aiosqlite = " >=0.20.0" # asyncio wrapper for sqlite, to store blocks
@@ -140,10 +145,3 @@ bump = true
140
145
[build-system ]
141
146
requires = [" poetry-core>=1.0.0" , " poetry-dynamic-versioning" ]
142
147
build-backend = " poetry_dynamic_versioning.backend"
143
-
144
- [project ]
145
- # duplicating until poetry v2, then revisit https://github.com/Chia-Network/chia-blockchain/pull/18797
146
- name = " chia-blockchain"
147
- # This has to match the poetry python entry above
148
- requires-python = " >=3.9, <4"
149
- dynamic = [" version" ]
0 commit comments