Skip to content

Commit e726a0b

Browse files
author
Michael Guarino
committed
Changes for publication
1 parent cb9a11d commit e726a0b

File tree

2 files changed

+19
-5
lines changed

2 files changed

+19
-5
lines changed

README.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,16 @@
22

33
## Installation
44

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
615

716
```bash
817
git clone git@github.com:Frameio/fioctl.git

setup.py

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,13 @@
22

33
from setuptools import setup
44

5+
with open("README.md", "r") as f:
6+
long_description = f.read()
7+
58
setup(name='fioctl',
69
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,
1012
packages=['fioctl'],
1113
include_package_data=True,
1214
install_requires=[
@@ -23,4 +25,7 @@
2325
],
2426
entry_points={
2527
'console_scripts': 'fioctl=fioctl.fioctl:cli'
26-
})
28+
},
29+
author='Frame.io, Inc.',
30+
author_email='platform@frame.io',
31+
license='MIT')

0 commit comments

Comments
 (0)