kopia lustrzana https://github.com/Yakifo/amqtt
exclude files from hatch build
rodzic
2a80968404
commit
7ffab02505
|
@ -7,7 +7,7 @@
|
|||

|
||||
[](https://pypi.org/project/amqtt/)
|
||||
|
||||

|
||||

|
||||
|
||||
`aMQTT` is an open source [MQTT](http://www.mqtt.org) broker and client[^1], natively implemented with Python's [asyncio](https://docs.python.org/3/library/asyncio.html).
|
||||
|
||||
|
|
|
@ -86,8 +86,18 @@ amqtt = "amqtt.scripts.broker_script:main"
|
|||
amqtt_pub = "amqtt.scripts.pub_script:main"
|
||||
amqtt_sub = "amqtt.scripts.sub_script:main"
|
||||
|
||||
[tool.hatch.build]
|
||||
exclude = [
|
||||
".venv*",
|
||||
"tests/",
|
||||
"**/tests/",
|
||||
"**/*.pyc",
|
||||
"**/__pycache__/",
|
||||
"**/README.md",
|
||||
]
|
||||
|
||||
[tool.hatch.build.targets.sdist]
|
||||
include = ["/amqtt", "README.md"]
|
||||
include = ["/amqtt", "README.md", "docs/assets/amqtt.svg"]
|
||||
|
||||
[tool.hatch.version]
|
||||
source = "vcs"
|
||||
|
|
Ładowanie…
Reference in New Issue