-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
44 lines (37 loc) · 1.24 KB
/
setup.py
File metadata and controls
44 lines (37 loc) · 1.24 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# coding: utf-8
"""
Vidispine API
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) # noqa: E501
The version of the OpenAPI document: 5.x
Contact: info@vidispine.com
Generated by: https://openapi-generator.tech
"""
from setuptools import setup, find_packages # noqa: H301
NAME = "vidispine"
VERSION = "5.0.4"
# To install the library, run the following
#
# python setup.py install
#
# prerequisite: setuptools
# http://pypi.python.org/pypi/setuptools
REQUIRES = ["urllib3 >= 1.15", "six >= 1.10", "certifi", "python-dateutil"]
setup(
name=NAME,
version=VERSION,
description="Vidispine API",
author="API support",
author_email="info@vidispine.com",
url="",
keywords=["OpenAPI", "OpenAPI-Generator", "Vidispine API"],
install_requires=REQUIRES,
packages=find_packages(exclude=["test", "tests"]),
include_package_data=True,
long_description="""\
This is the official Vidispine API client for Python 2.7 and 3.4+.
To get started, please see the [readme on Github](https://github.com/vidispine/vidispine-python-sdk)!
""",
long_description_content_type="text/markdown",
test_suite='nose.collector',
tests_require=['nose']
)