File tree 7 files changed +18
-10
lines changed
7 files changed +18
-10
lines changed Original file line number Diff line number Diff line change 6
6
- " 3.8"
7
7
8
8
install :
9
+ - pip install -r requirements-dev.txt
9
10
- pip install -r requirements.txt
10
11
11
12
before_install :
Original file line number Diff line number Diff line change @@ -2,9 +2,6 @@ include MANIFEST.in
2
2
include setup.py
3
3
include README.md
4
4
include LICENSE
5
-
5
+ include requirements.txt
6
6
7
7
include assets/*.png
8
-
9
-
10
- prune assets/*.pptx
Original file line number Diff line number Diff line change 1
1
# Flow.Launcher.JsonRPC.Python
2
2
3
- [ ![ Build Status] ( https://travis-ci.org/Zeroto521/Flow.Launcher.JsonRPC.Python.svg?branch=master )] ( https://travis-ci.org/Zeroto521/Flow.Launcher.JsonRPC.Python )
3
+ [ ![ Build Status] ( https://img.shields.io/travis/Zeroto521/Flow.Launcher.JsonRPC.Python/master?style=for-the-badge )] ( https://travis-ci.org/Zeroto521/Flow.Launcher.JsonRPC.Python )
4
+ [ ![ ] ( https://img.shields.io/pypi/v/flowlauncher.svg?style=for-the-badge )] ( https://pypi.org/project/flowlauncher/ )
5
+ [ ![ PyPI pyversions] ( https://img.shields.io/pypi/pyversions/flowlauncher?style=for-the-badge )] ( https://pypi.org/project/flowlauncher/ )
4
6
5
7
Flow Launcher supports Python by JsonRPC.
6
8
@@ -30,13 +32,19 @@ So we need to build a **common API** between Flow and Plugin.
30
32
31
33
### Using ` pip `
32
34
33
- ``` powershell
35
+ ``` bash
36
+ >>> pip install flowlauncher
37
+ ```
38
+
39
+ ### Using ` pip ` + ` git `
40
+
41
+ ``` bash
34
42
>>> pip install git+https://github.com/Flow-Launcher/Flow.Launcher.JsonRPC.Python.git
35
43
```
36
44
37
45
### Using ` git `
38
46
39
- ``` powershell
47
+ ``` bash
40
48
>>> git clone https://github.com/Flow-Launcher/Flow.Launcher.JsonRPC.Python.git
41
49
>>> cd Flow.Launcher.JsonRPC.Python
42
50
>>> python setup.py install
Original file line number Diff line number Diff line change 4
4
from .FlowLauncherAPI import FlowLauncherAPI
5
5
6
6
7
- __version__ = '0.1.0 '
7
+ __version__ = '0.1.1 '
8
8
__license__ = 'MIT'
9
9
__short_description__ = 'Flow Launcher supports Python by JsonRPC.'
Original file line number Diff line number Diff line change
1
+ twine
Original file line number Diff line number Diff line change 23
23
24
24
PLATFORMS = ["Windows" ]
25
25
CLASSIFIERS = [
26
- "Development Status :: 3 - Alphaa " ,
26
+ "Development Status :: 3 - Alpha " ,
27
27
28
28
"Intended Audience :: Developers" ,
29
29
65
65
packages = find_packages (),
66
66
include_package_data = True ,
67
67
download_url = DOWNLOAD_URL ,
68
+ install_requires = REQUIRES ,
68
69
requires = REQUIRES ,
69
70
classifiers = CLASSIFIERS
70
71
)
Original file line number Diff line number Diff line change 1
1
python setup.py check
2
- python setup.py bdist_wheel
2
+ python setup.py sdist bdist_wheel
3
3
python setup.py install
You can’t perform that action at this time.
0 commit comments