Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,7 @@ jobs:
with:
fetch-depth: 0
- name: Install tox
# https://github.com/tox-dev/tox/issues/3602
run: python -m pip install 'tox<4.30'
run: python -m pip install tox
- name: Run ruff format
run: |
tox -e ruff-format
Expand Down
1 change: 0 additions & 1 deletion MANIFEST.in

This file was deleted.

36 changes: 36 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,42 @@ requires = [
]
build-backend = 'setuptools.build_meta'

[project]
name = "varlink"
description = "Python implementation of the Varlink protocol"
readme = "README.md"
requires-python = ">=3.9"
dynamic = ["version"]
authors = [
{name = "Lars Karlitski", email = "lars@karlitski.net"},
{name = "Harald Hoyer", email = "harald@hoyer.xyz"}
]
keywords = ["ipc", "varlink", "rpc"]
license = "Apache-2.0"
license-files = ["LICENSE.txt"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: System :: Networking",
]

[project.urls]
Homepage = "https://varlink.org/"
Repository = "https://github.com/varlink/python"
Issues = "https://github.com/varlink/python/issues"

[tool.setuptools.package-data]
varlink = [
"*.varlink"
]

[tool.setuptools_scm]
local_scheme = "no-local-version"

Expand Down
37 changes: 0 additions & 37 deletions setup.cfg

This file was deleted.

15 changes: 0 additions & 15 deletions setup.py

This file was deleted.