Skip to content
This repository was archived by the owner on Feb 26, 2021. It is now read-only.

Commit 2587eb4

Browse files
author
cstrap
committed
Housekeeping - need docs!
1 parent 2e2ec59 commit 2587eb4

File tree

6 files changed

+9
-30
lines changed

6 files changed

+9
-30
lines changed

CONTRIBUTING.rst

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
.. highlight:: shell
2-
31
============
42
Contributing
53
============
@@ -79,7 +77,7 @@ Ready to contribute? Here's how to set up `python_vuejs` for local development.
7977
5. When you're done making changes, check that your changes pass flake8 and the tests, including testing other Python versions with tox::
8078

8179
$ flake8 python_vuejs tests
82-
$ python setup.py test or py.test
80+
$ python setup.py test
8381
$ tox
8482

8583
To get flake8 and tox, just pip install them into your virtualenv.
@@ -101,7 +99,7 @@ Before you submit a pull request, check that it meets these guidelines:
10199
2. If the pull request adds functionality, the docs should be updated. Put
102100
your new functionality into a function with a docstring, and add the
103101
feature to the list in README.rst.
104-
3. The pull request should work for Python 2.6, 2.7, 3.3, 3.4 and 3.5, and for PyPy. Check
102+
3. The pull request should work for Python 2.7, 3.3, 3.4 and 3.5. Check
105103
https://travis-ci.org/cstrap/python_vuejs/pull_requests
106104
and make sure that the tests pass for all supported Python versions.
107105

HISTORY.rst

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22
History
33
=======
44

5-
0.0.1 (2017-05-23)
5+
0.0.1 (2017-05-24)
66
------------------
77

88
* First release on PyPI.
9+
* Provide a set of scripts in order to automate Vue.js project creation.

MANIFEST.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@ include README.rst
66

77
recursive-include tests *
88
recursive-exclude * __pycache__
9-
recursive-exclude * *.py[co]
9+
recursive-exclude * *.py[cod]
1010

1111
recursive-include docs *.rst conf.py Makefile make.bat *.jpg *.png *.gif

docs/usage.rst

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,6 @@ Usage
44

55
To use Python and Vue.js integration in a project::
66

7-
import python_vuejs
7+
pip install python-vue
8+
9+
See the command reference on README.md file

python_vuejs/LICENSE

Lines changed: 0 additions & 21 deletions
This file was deleted.

tests/test_python_vuejs.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@
1818
from python_vuejs import cli
1919

2020

21-
2221
class TestPython_vuejs(unittest.TestCase):
2322

2423
def setUp(self):
@@ -37,4 +36,4 @@ def test_command_line_interface(self):
3736
assert 'python_vuejs.cli.main' in result.output
3837
help_result = runner.invoke(cli.main, ['--help'])
3938
assert help_result.exit_code == 0
40-
assert '--help Show this message and exit.' in help_result.output
39+
assert '--help Show this message and exit.' in help_result.output

0 commit comments

Comments
 (0)