mirror of
https://github.com/Dinnerbone/mcstatus.git
synced 2026-04-06 03:51:23 +08:00
Compare commits
2 Commits
07b4f830ce
...
v9.0.0-dev
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
f7a36c1913 | ||
|
|
e2ff102ee4 |
7
CONTRIBUTING.md
Normal file
7
CONTRIBUTING.md
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
Setup:
|
||||||
|
```
|
||||||
|
pipx install poetry
|
||||||
|
pipx inject poetry poetry-dynamic-versioning
|
||||||
|
pipx install tox
|
||||||
|
pipx inject tox tox-poetry
|
||||||
|
```
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
[tool.poetry]
|
[tool.poetry]
|
||||||
name = "mcstatus"
|
name = "mcstatus"
|
||||||
version = "8.0.0"
|
version = "0.0.0" # version is handled by git tags and poetry-dynamic-versioning
|
||||||
description = "A library to query Minecraft Servers for their status and capabilities."
|
description = "A library to query Minecraft Servers for their status and capabilities."
|
||||||
authors = ["Nathan Adams <dinnerbone@dinnerbone.com>"]
|
authors = ["Nathan Adams <dinnerbone@dinnerbone.com>"]
|
||||||
license = "Apache-2.0"
|
license = "Apache-2.0"
|
||||||
@@ -55,9 +55,14 @@ minversion = "6.0"
|
|||||||
addopts = "--strict-markers --doctest-modules --cov=mcstatus --cov-append --cov-branch --cov-report=term-missing -vvv --no-cov-on-fail"
|
addopts = "--strict-markers --doctest-modules --cov=mcstatus --cov-append --cov-branch --cov-report=term-missing -vvv --no-cov-on-fail"
|
||||||
testpaths = ["mcstatus/tests"]
|
testpaths = ["mcstatus/tests"]
|
||||||
|
|
||||||
|
[tool.poetry-dynamic-versioning]
|
||||||
|
bump = true
|
||||||
|
enable = true
|
||||||
|
style = "pep440"
|
||||||
|
|
||||||
[tool.black]
|
[tool.black]
|
||||||
line-length = 127
|
line-length = 127
|
||||||
|
|
||||||
[build-system]
|
[build-system]
|
||||||
requires = ["poetry-core>=1.0.0"]
|
requires = ["poetry-core>=1.0.0", "poetry-dynamic-versioning"]
|
||||||
build-backend = "poetry.core.masonry.api"
|
build-backend = "poetry.core.masonry.api"
|
||||||
|
|||||||
Reference in New Issue
Block a user