-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathsetup.py
34 lines (33 loc) · 1.18 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
33
34
from setuptools import setup, find_packages
import os, sys
setup(name='dailymotion',
version='0.2.5',
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",
"Programming Language :: Python :: 3"
],
keywords=['dailymotion', 'api', 'sdk', 'graph'],
author='Samir AMZANI',
author_email='[email protected]',
url='http://github.com/dailymotion/dailymotion-sdk-python',
license='Apache License, Version 2.0',
include_package_data=True,
zip_safe=False,
py_modules = ['dailymotion','xupload'],
setup_requires=["wheel"],
install_requires=[
'requests',
'requests_toolbelt',
'aiohttp!=4.0.0a1;python_version>"3.4"',
'aiofiles;python_version>"3.4"',
'asyncio;python_version>"3.4"'
],
)