File tree Expand file tree Collapse file tree 3 files changed +34
-10
lines changed
Expand file tree Collapse file tree 3 files changed +34
-10
lines changed Original file line number Diff line number Diff line change @@ -14,47 +14,47 @@ Features
1414
1515Auto Completion:
1616
17- .. image :: resources/auto-complete.gif
17+ .. image :: https://github.com/palantir/python-language-server/blob/develop/ resources/auto-complete.gif
1818
1919Code Linting with pycodestyle and pyflakes:
2020
21- .. image :: resources/linting.gif
21+ .. image :: https://github.com/palantir/python-language-server/blob/develop/ resources/linting.gif
2222
2323Signature Help:
2424
25- .. image :: resources/signature-help.gif
25+ .. image :: https://github.com/palantir/python-language-server/blob/develop/ resources/signature-help.gif
2626
2727Go to definition:
2828
29- .. image :: resources/goto-definition.gif
29+ .. image :: https://github.com/palantir/python-language-server/blob/develop/ resources/goto-definition.gif
3030
3131Hover:
3232
33- .. image :: resources/hover.gif
33+ .. image :: https://github.com/palantir/python-language-server/blob/develop/ resources/hover.gif
3434
3535Find References:
3636
37- .. image :: resources/references.gif
37+ .. image :: https://github.com/palantir/python-language-server/blob/develop/ resources/references.gif
3838
3939Document Symbols:
4040
41- .. image :: resources/document-symbols.gif
41+ .. image :: https://github.com/palantir/python-language-server/blob/develop/ resources/document-symbols.gif
4242
4343Document Formatting:
4444
45- .. image :: resources/document-format.gif
45+ .. image :: https://github.com/palantir/python-language-server/blob/develop/ resources/document-format.gif
4646
4747Installation
4848------------
4949
50- ``pip install --process-dependency-links . ``
50+ ``pip install python-language-server ``
5151
5252Development
5353-----------
5454
5555To run the test suite:
5656
57- ``pip install --process-dependency-links .[test] && tox ``
57+ ``pip install .[test] && tox ``
5858
5959Develop against VS Code
6060=======================
Original file line number Diff line number Diff line change 11machine :
22 post :
33 - pyenv global 2.7.11 3.4.3
4+
5+ deployment :
6+ releases :
7+ tag : /[0-9]+(\.[0-9]+)+((-(beta|rc)[0-9]{1,2})(\.[0-9])?)?/
8+ owner : palantir
9+ commands :
10+ - ./scripts/circle/pypi.sh
Original file line number Diff line number Diff line change 1+ #! /usr/bin/env bash -e
2+
3+ if [ -z " $CI " ]; then
4+ echo " Will only continue on CI"
5+ exit
6+ fi
7+
8+ # build package and upload to private pypi index
9+ rm -f ~ /.pypirc
10+ echo " [distutils]" >> ~ /.pypirc
11+ echo " index-servers = pypi-private" >> ~ /.pypirc
12+ echo " [pypi-private]" >> ~ /.pypirc
13+ echo " repository=https://$PYPI_HOST " >> ~ /.pypirc
14+ echo " username=$PYPI_USERNAME " >> ~ /.pypirc
15+ echo " password=$PYPI_PASSWORD " >> ~ /.pypirc
16+
17+ python setup.py sdist upload -r pypi-private
You can’t perform that action at this time.
0 commit comments