-
Notifications
You must be signed in to change notification settings - Fork 15
/
setup.py
32 lines (28 loc) · 1.19 KB
/
setup.py
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
from setuptools import setup
from os import path
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.txt')) as f:
long_description = f.read()
setup(
name='KalturaApiClient',
version='19.4.0',
url='https://github.com/kaltura/KalturaGeneratedAPIClientsPython',
packages=['KalturaClient', 'KalturaClient.Plugins'],
install_requires=['requests>=2.4.2', 'requests-toolbelt', 'six'],
license='AGPLv3+',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
],
keywords='Kaltura API client',
description='A Python module for accessing the Kaltura API.',
long_description=long_description,
long_description_content_type="text/plain"
)