Skip to content

Commit f1de1bf

Browse files
authored
Merge pull request #7 from Frameio/pip
update setup.py and prepare for pip release
2 parents f8ead4a + 8c3b201 commit f1de1bf

2 files changed

Lines changed: 15 additions & 10 deletions

File tree

README.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff 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

1114
via 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

setup.py

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,17 @@
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
)

0 commit comments

Comments
 (0)