-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4 from buildnn/qa
Qa
- Loading branch information
Showing
3 changed files
with
68 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
\pypack_metager\ | ||
================ | ||
|
||
A `BuildNN <https://www.buildnn.com>`_ Open Source project. | ||
|
||
Installing | ||
---------- | ||
|
||
.. code-block:: text | ||
$ pip install pymetager | ||
or from source | ||
|
||
.. code-block:: text | ||
$ git clone https://github.com/buildnn/pymetager | ||
$ cd pymetager | ||
$ pip install -e . | ||
Quickstart | ||
---------- | ||
|
||
.. code-block:: text | ||
$ pymetager --help | ||
Usage: pymetager [OPTIONS] COMMAND [ARGS]... | ||
Options: | ||
-q, --quiet Flag for minimal output. | ||
--config_fp FILE Custom path for setup.cfg. [default: ./setup.cfg] | ||
--help Show this message and exit. | ||
Commands: | ||
echo-meta-elm | ||
increment | ||
let's use info print function | ||
|
||
.. code-block:: text | ||
$ pymetager echo-meta-elm --help | ||
--- PYPACK-METAGER --- | ||
A BuildNN Open Source project. | ||
Reading/Writing from/to ./setup.cfg | ||
Usage: pymetager echo-meta-elm [OPTIONS] [NAME] | ||
Options: | ||
-s, --section TEXT | ||
--help Show this message and exit | ||
.. code-block:: text | ||
$ pymetager echo-meta-elm version | ||
--- PYPACK-METAGER --- | ||
A BuildNN Open Source project. | ||
Reading/Writing from/to ./setup.cfg | ||
0.0.1 | ||
Or, concisely | ||
|
||
.. code-block:: text | ||
$ pymetager -q echo-meta-elm version | ||
0.0.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,8 +14,7 @@ license_file = LICENSE | |
maintainer = BuildNN Team | ||
maintainer_email = [email protected] | ||
description = A Python package metadata manager by BuildNN. | ||
long_description = file: README.md | ||
long_description_content_type = text/markdown | ||
long_description = file: README.rst | ||
classifiers = | ||
Environment :: Console | ||
Intended Audience :: Developers | ||
|