-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6 from shotstack/remove-defaults-and-requireds
Remove defaults and requireds
- Loading branch information
Showing
22 changed files
with
119 additions
and
170 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,7 @@ | ||
""" | ||
Shotstack | ||
Shotstack is a video, image and audio editing service that allows for the automated generation of videos, images and audio using JSON and a RESTful API. You arrange and configure an edit and POST it to the API which will render your media and provide a file location when complete. For more details visit [shotstack.io](https://shotstack.io) or checkout our [getting started](https://shotstack.gitbook.io/docs/guides/getting-started) documentation. There are two main API's, one for editing and generating assets (Edit API) and one for managing hosted assets (Serve API). The Edit API base URL is: <b>https://api.shotstack.io/{version}</b> The Serve API base URL is: <b>https://api.shotstack.io/serve/{version}</b> # noqa: E501 | ||
The version of the OpenAPI document: v1 | ||
Generated by: https://openapi-generator.tech | ||
""" | ||
|
||
|
||
from setuptools import setup, find_packages # noqa: H301 | ||
|
||
NAME = "shotstack-sdk" | ||
VERSION = "0.2.2" | ||
VERSION = "0.2.5" | ||
# To install the library, run the following | ||
# | ||
# python setup.py install | ||
|
@@ -30,13 +20,21 @@ | |
description="Shotstack", | ||
author="Shotstack", | ||
author_email="[email protected]", | ||
url="https://shotstack.io", | ||
keywords=["Shotstack"], | ||
url="https://shotstack.io/product/sdk/python/", | ||
keywords=["shotstack", "video", "video editing", "video editor", "video editing api", "video generation", "video manipulation", "ffmpeg"], | ||
python_requires=">=3.6", | ||
install_requires=REQUIRES, | ||
packages=find_packages(exclude=["test", "tests"]), | ||
include_package_data=True, | ||
long_description_content_type="text/markdown", | ||
long_description="""\ | ||
Shotstack is a video, image and audio editing service that allows for the automated generation of videos, images and audio using JSON and a RESTful API. You arrange and configure an edit and POST it to the API which will render your media and provide a file location when complete. For more details visit [shotstack.io](https://shotstack.io) or checkout our [getting started](https://shotstack.gitbook.io/docs/guides/getting-started) documentation. There are two main API's, one for editing and generating assets (Edit API) and one for managing hosted assets (Serve API). The Edit API base URL is: <b>https://api.shotstack.io/{version}</b> The Serve API base URL is: <b>https://api.shotstack.io/serve/{version}</b> # noqa: E501 | ||
Shotstack is a video, image and audio editing service that allows for the automated generation of videos, images and audio using JSON | ||
and a RESTful API. You arrange and configure an edit and POST it to the API which will render your media and provide a file | ||
location when complete. | ||
For more details visit [shotstack.io](https://shotstack.io) or checkout our | ||
[getting started](https://shotstack.gitbook.io/docs/guides/getting-started) documentation. | ||
View the GitHub repo for full [SDK documentation](https://github.com/shotstack/shotstack-sdk-python/). | ||
""" | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.