File tree 3 files changed +31
-0
lines changed
3 files changed +31
-0
lines changed Original file line number Diff line number Diff line change
1
+ # Table of contents
2
+
3
+ * [ Table of contents] ( #table-of-contents )
4
+ * [ Pre-req] ( #pre-req )
5
+ * [ Upload process] ( #upload-process )
6
+
7
+ ## Pre-req
8
+
9
+ * Register an account with (pypy.org)[ https://pypi.org ]
10
+ * Install twine with ` pip install twine `
11
+
12
+ ## Upload process
13
+
14
+ * Build your release candidate with:
15
+
16
+ ``` bash
17
+ python setup.py sdist
18
+ ```
19
+
20
+ * Upload the package with
21
+
22
+ ``` bash
23
+ twine upload dist/*
24
+ ```
Original file line number Diff line number Diff line change
1
+ # Inside of setup.cfg
2
+ [metadata]
3
+ description-file = README.md
4
+
Original file line number Diff line number Diff line change 3
3
setup (
4
4
name = 'Composer Version Manager' ,
5
5
packages = find_packages (),
6
+ version = '1.0.6' ,
7
+ license = 'MIT' ,
8
+ url = 'https://github.com/composer-version-manager/cvm' ,
6
9
entry_points = {
7
10
'console_scripts' : [
8
11
'cvm=cvm.cli:main' ,
You can’t perform that action at this time.
0 commit comments