File tree Expand file tree Collapse file tree 2 files changed +19
-5
lines changed Expand file tree Collapse file tree 2 files changed +19
-5
lines changed Original file line number Diff line number Diff line change 2
2
3
3
## Installation
4
4
5
- Currently you can only install from source, so:
5
+ ### PyPi
6
+
7
+ The cli requires python3 to take advantage of it's more modern threading capabilities. So
8
+ you need to do:
9
+
10
+ ``` bash
11
+ pip3 install fioctl
12
+ ```
13
+
14
+ ### From Source
6
15
7
16
``` bash
8
17
git clone git@github.com:Frameio/fioctl.git
Original file line number Diff line number Diff line change 2
2
3
3
from setuptools import setup
4
4
5
+ with open ("README.md" , "r" ) as f :
6
+ long_description = f .read ()
7
+
5
8
setup (name = 'fioctl' ,
6
9
version = '1.0' ,
7
- description = 'Frame.io operational tools' ,
8
- author = 'Michael Guarino' ,
9
- author_email = 'mguarino@frame.io' ,
10
+ description = 'Frame.io cli' ,
11
+ long_description = long_description ,
10
12
packages = ['fioctl' ],
11
13
include_package_data = True ,
12
14
install_requires = [
23
25
],
24
26
entry_points = {
25
27
'console_scripts' : 'fioctl=fioctl.fioctl:cli'
26
- })
28
+ },
29
+ author = 'Frame.io, Inc.' ,
30
+ author_email = 'platform@frame.io' ,
31
+ license = 'MIT' )
You can’t perform that action at this time.
0 commit comments