forked from dailymotion/dailymotion-sdk-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
29 lines (28 loc) · 987 Bytes
/
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
from setuptools import setup, find_packages
import os, sys
setup(name='dailymotion',
version='0.3.0',
description='Dailymotion API SDK',
long_description='Dailymotion API SDK',
classifiers=[
"Programming Language :: Python",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
],
keywords=['dailymotion', 'api', 'sdk', 'graph'],
author='Samir AMZANI',
author_email='[email protected]',
url='http://github.com/boilerroomtv/dailymotion-sdk-python',
license='Apache License, Version 2.0',
include_package_data=True,
zip_safe=False,
py_modules = ['dailymotion',],
install_requires=[
'requests',
'requests_toolbelt'
],
)