After protecting the * tag pattern on the python/ group, the group-
scoped Protected TWINE_USERNAME/TWINE_PASSWORD vars inject into tag
pipelines. Twine 6+ sees them set and uses classic auth directly,
skipping Trusted Publishing (which can't work for self-hosted
git.unturf.com — see docs/PYPI-TRUSTED-PUBLISHING.md).
What this commit changes:
- .gitlab-ci.yml drops the --trusted-publishing flag (unrecognized
by the runner's twine anyway) — twine sees env vars and is happy
- pyproject.toml stays on the latest setuptools (no <77 cap needed
since we're not pinning twine<6 anymore)
- Diagnostic for TWINE_USERNAME/TWINE_PASSWORD presence stays so
future failures surface fast
72 lines
1.8 KiB
TOML
72 lines
1.8 KiB
TOML
[build-system]
|
|
requires = ["setuptools>=68", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "erldistpy"
|
|
version = "0.1.6"
|
|
description = "Native Python client for Erlang distribution protocol — EPMD + v6 handshake + gen_server call(), no asyncio."
|
|
readme = { file = "README.md", content-type = "text/markdown" }
|
|
requires-python = ">=3.10"
|
|
license = { text = "Unlicense" }
|
|
authors = [
|
|
{ name = "Russell Ballestrini", email = "russell.ballestrini@gmail.com" },
|
|
]
|
|
keywords = [
|
|
"erlang",
|
|
"elixir",
|
|
"distribution",
|
|
"dist",
|
|
"gen_server",
|
|
"rpc",
|
|
"etf",
|
|
"epmd",
|
|
"inet_tls_dist",
|
|
"interop",
|
|
]
|
|
classifiers = [
|
|
"Development Status :: 3 - Alpha",
|
|
"Intended Audience :: Developers",
|
|
"License :: Public Domain",
|
|
"Operating System :: OS Independent",
|
|
"Programming Language :: Python",
|
|
"Programming Language :: Python :: 3",
|
|
"Programming Language :: Python :: 3.10",
|
|
"Programming Language :: Python :: 3.11",
|
|
"Programming Language :: Python :: 3.12",
|
|
"Programming Language :: Python :: 3.13",
|
|
"Programming Language :: Python :: 3 :: Only",
|
|
"Programming Language :: Erlang",
|
|
"Topic :: Software Development :: Libraries :: Python Modules",
|
|
"Topic :: System :: Networking",
|
|
]
|
|
dependencies = []
|
|
|
|
[project.urls]
|
|
Homepage = "https://git.unturf.com/python/erldistpy"
|
|
Repository = "https://git.unturf.com/python/erldistpy"
|
|
"Bug Tracker" = "https://git.unturf.com/python/erldistpy/-/issues"
|
|
|
|
[project.optional-dependencies]
|
|
dev = [
|
|
"pytest >=8.0,<9",
|
|
"pytest-cov >=5.0,<7",
|
|
"ruff >=0.6,<1",
|
|
"build >=1.0",
|
|
"twine >=5.0",
|
|
]
|
|
|
|
[tool.setuptools.packages.find]
|
|
include = ["erldistpy*"]
|
|
|
|
[tool.pytest.ini_options]
|
|
testpaths = ["tests"]
|
|
addopts = "-ra --strict-markers"
|
|
|
|
[tool.ruff]
|
|
line-length = 100
|
|
target-version = "py310"
|
|
|
|
[tool.ruff.lint]
|
|
select = ["E", "F", "I", "B", "UP", "SIM"]
|
|
ignore = ["E501"]
|