Switch to pyproject.toml style setuptools config

This commit is contained in:
Joscha 2022-08-21 14:24:05 +02:00
parent 74caea4e92
commit 37c4ba703a
4 changed files with 13 additions and 30 deletions

View file

@ -1,28 +0,0 @@
from setuptools import setup
setup(
name="yaboli",
version="1.1.5",
packages=["yaboli"],
install_requires=["websockets >=10.3, <11"],
)
# When updating the version, also:
# - update the README.md installation instructions
# - update the changelog
# - set a tag to the update commit
# Meanings of version numbers
#
# Format: a.b.c
#
# a - increased when: major change such as a rewrite
# b - increased when: changes breaking backwards compatibility
# c - increased when: minor changes preserving backwards compatibility
#
# To specify version requirements for yaboli, the following format is
# recommended if you need version a.b.c:
#
# yaboli >=a.b.c, <a.b+1.c
#
# "b+1" is the version number of b increased by 1, not "+1" appended to b.