File tree Expand file tree Collapse file tree 2 files changed +17
-2
lines changed Expand file tree Collapse file tree 2 files changed +17
-2
lines changed Original file line number Diff line number Diff line change
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
+ ```
Original file line number Diff line number Diff line change @@ -8,12 +8,12 @@ authors = [
8
8
]
9
9
classifiers = [
10
10
" Development Status :: 4 - Beta" ,
11
- " Framework :: Gherkin" ,
12
11
" Intended Audience :: Developers" ,
13
12
" License :: OSI Approved :: MIT License" ,
14
13
" Operating System :: POSIX" ,
15
14
" Operating System :: Microsoft :: Windows" ,
16
15
" Operating System :: MacOS :: MacOS X" ,
16
+ " Topic :: Software Development :: Testing" ,
17
17
" Topic :: Utilities" ,
18
18
" Programming Language :: Python :: 3" ,
19
19
" Programming Language :: Python :: 3.8" ,
@@ -30,7 +30,7 @@ license = {text = "MIT"}
30
30
maintainers = [
31
31
{
name =
" Konstantin Goloveshko" ,
email =
" [email protected] " }
32
32
]
33
- name = " messages"
33
+ name = " cuke- messages"
34
34
readme = {file = " README.md" , content-type = " text/markdown" }
35
35
requires-python = " >=3.8"
36
36
urls = {Repository = " https://github.com/cucumber/messages" }
You can’t perform that action at this time.
0 commit comments