File tree Expand file tree Collapse file tree 3 files changed +31
-0
lines changed Expand file tree Collapse file tree 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 33setup (
44 name = 'Composer Version Manager' ,
55 packages = find_packages (),
6+ version = '0.0.1' ,
7+ license = 'MIT' ,
8+ url = 'https://github.com/composer-version-manager/cvm' ,
69 entry_points = {
710 'console_scripts' : [
811 'cvm=cvm.cli:main' ,
You can’t perform that action at this time.
0 commit comments