Skip to content

Commit cecd1fe

Browse files
committed
Perepare release to PyPi
1 parent 0a79e3b commit cecd1fe

File tree

2 files changed

+17
-2
lines changed

2 files changed

+17
-2
lines changed

python/RELEASING.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# How to make a release
2+
3+
```shell
4+
python -m pip install --upgrade build twine
5+
6+
# cleanup the ./dist folder
7+
rm -rf ./dist
8+
9+
# Build the distributions
10+
python -m build
11+
12+
# Upload them
13+
14+
twine upload dist/*
15+
```

python/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ authors = [
88
]
99
classifiers = [
1010
"Development Status :: 4 - Beta",
11-
"Framework :: Gherkin",
1211
"Intended Audience :: Developers",
1312
"License :: OSI Approved :: MIT License",
1413
"Operating System :: POSIX",
1514
"Operating System :: Microsoft :: Windows",
1615
"Operating System :: MacOS :: MacOS X",
16+
"Topic :: Software Development :: Testing",
1717
"Topic :: Utilities",
1818
"Programming Language :: Python :: 3",
1919
"Programming Language :: Python :: 3.8",
@@ -30,7 +30,7 @@ license = {text = "MIT"}
3030
maintainers = [
3131
{name = "Konstantin Goloveshko", email = "[email protected]"}
3232
]
33-
name = "messages"
33+
name = "cuke-messages"
3434
readme = {file = "README.md", content-type = "text/markdown"}
3535
requires-python = ">=3.8"
3636
urls = {Repository = "https://github.com/cucumber/messages"}

0 commit comments

Comments
 (0)