-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
🔬 implement README.rst using templates
Also mention @coala uses this project.
- Loading branch information
Showing
4 changed files
with
71 additions
and
6 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,49 @@ | ||
{% extends 'README.rst.jj2' %} | ||
|
||
{% block documentation_link %} | ||
{% endblock %} | ||
|
||
{% block features %} | ||
{{description}} | ||
It is used with `yehua <https://github.com/chfw/yehua>`_. | ||
Organisations using it: | ||
|
||
- `pyexcel <https://github.com/pyexcel/pyexcel>`_. | ||
- `coala <https://github.com/coala/coala>`_. | ||
|
||
Features | ||
================================================================================ | ||
|
||
setup.py | ||
---------- | ||
|
||
1. flake8 compliant setup.py | ||
|
||
2. feature parity with `kennethreitz/setup.py <https://github.com/kennethreitz/setup.py>`_ | ||
|
||
- automatically upload to pypi without using twine | ||
|
||
- automatically do git release while uploading to pypi | ||
|
||
3. configured to build universial wheels by default | ||
{% endblock %} | ||
|
||
{% block bottom_block %} | ||
Notes | ||
================================================================================ | ||
|
||
|
||
In order to run, `python setup.py publish`, you will have setup `.pypirc` in | ||
your home folder as:: | ||
|
||
[distutils] | ||
index-servers = | ||
pypi | ||
|
||
[pypi] | ||
username=your_name | ||
password=your_password | ||
|
||
|
||
And you need to configure `gease`. | ||
{% endblock %} |
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
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
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 |
---|---|---|
@@ -1,7 +1,9 @@ | ||
configuration: | ||
configuration: config/data.yml | ||
template_dir: | ||
- .moban.dt/ | ||
- templates | ||
targets: | ||
- .gitignore: gitignore.jj2 | ||
- LICENSE: NEW_BSD_LICENSE.jj2 | ||
- README.rst: local-README.rst.jj2 |