-
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.
Extract developer instructions to a separate file
README.md is intended for end users so I think it’s good to move information they don’t need elsewhere.
- Loading branch information
Showing
2 changed files
with
28 additions
and
28 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,28 @@ | ||
Development | ||
=========== | ||
|
||
To install in development mode with all required development and testing | ||
dependencies: | ||
|
||
# pip3 install -e .[dev] | ||
|
||
To run the tests: | ||
|
||
# ./test | ||
|
||
|
||
Packaging | ||
--------- | ||
|
||
To build the wheel, first install in development mode with `[dev]` extras. This | ||
will ensure that pep517 and twine are installed. | ||
|
||
Build the wheel with pep517's build command: | ||
|
||
# python3 -m pep517.build . | ||
|
||
Upload new the version to PyPI: | ||
|
||
# python3 -m twine upload dist/* | ||
|
||
|
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