Switch to pyproject.toml style setuptools config
This commit is contained in:
parent
74caea4e92
commit
37c4ba703a
4 changed files with 13 additions and 30 deletions
14
.gitignore
vendored
14
.gitignore
vendored
|
|
@ -1,12 +1,4 @@
|
|||
# python stuff
|
||||
__pycache__/
|
||||
|
||||
# venv stuff
|
||||
bin/
|
||||
include/
|
||||
lib/
|
||||
lib64
|
||||
pyvenv.cfg
|
||||
|
||||
# mypy stuff
|
||||
.mypy_cache/
|
||||
*.egg-info/
|
||||
/.mypy_cache/
|
||||
/.venv/
|
||||
|
|
|
|||
|
|
@ -3,6 +3,7 @@
|
|||
## Next version
|
||||
|
||||
- update websockets dependency
|
||||
- switch to pyproject.toml style setuptools config
|
||||
|
||||
## 1.1.5 (2020-01-26)
|
||||
|
||||
|
|
|
|||
12
examples/echo/.gitignore
vendored
12
examples/echo/.gitignore
vendored
|
|
@ -1,15 +1,3 @@
|
|||
# python stuff
|
||||
__pycache__/
|
||||
|
||||
# venv stuff
|
||||
bin/
|
||||
include/
|
||||
lib/
|
||||
lib64
|
||||
pyvenv.cfg
|
||||
|
||||
# bot stuff
|
||||
#
|
||||
# These files are ignored because they may contain sensitive information you
|
||||
# wouldn't want in your repo. If you need to have a config file in your repo,
|
||||
# store a bot.conf.default with default settings.
|
||||
|
|
|
|||
|
|
@ -1,11 +1,13 @@
|
|||
from setuptools import setup
|
||||
[build-system]
|
||||
requires = ["setuptools"]
|
||||
build-backend = "setuptools.build_meta"
|
||||
|
||||
setup(
|
||||
name="yaboli",
|
||||
version="1.1.5",
|
||||
packages=["yaboli"],
|
||||
install_requires=["websockets >=10.3, <11"],
|
||||
)
|
||||
[project]
|
||||
name = "yaboli"
|
||||
version = "1.1.5"
|
||||
dependencies = [
|
||||
"websockets >=10.3, <11"
|
||||
]
|
||||
|
||||
# When updating the version, also:
|
||||
# - update the README.md installation instructions
|
||||
Loading…
Add table
Add a link
Reference in a new issue