File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -6,13 +6,15 @@ Official Python client for the Frame.io API.
66
77### Installation
88
9- ~~ via Pip~~
9+ via Pip
10+ ```
11+ $ pip install frameioclient
12+ ```
1013
1114via Source
12-
1315```
1416$ git clone https://github.com/frameio/python-frameio-client
15- $ pip install -r requirements.txt
17+ $ pip install .
1618```
1719
1820## Documentation
Original file line number Diff line number Diff line change 1- from setuptools import setup
1+ import setuptools
22
3- setup (
3+ with open ("README.md" , "r" ) as f :
4+ long_description = f .read ()
5+
6+ setuptools .setup (
47 name = 'frameioclient' ,
58 version = '0.0.1' ,
69 description = 'Client library for the Frame.io API' ,
10+ long_description = long_description ,
11+ long_description_content_type = "text/markdown" ,
712 url = 'https://github.com/frameio/python-frameio-client' ,
13+ packages = setuptools .find_packages (),
814 author = 'Frame.io, Inc.' ,
9- author_email = 'oss@frame.io' ,
10- license = 'MIT' ,
11- install_requires = [
12- 'requests'
13- ]
15+ author_email = 'platform@frame.io' ,
16+ license = 'MIT'
1417)
You can’t perform that action at this time.
0 commit comments