forked from vimeo/vimeo.py
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
30 lines (28 loc) · 941 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
30
#! /usr/bin/env python
# encoding: utf-8
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(name='PyVimeo',
version='0.3.4',
description='Simple interaction with the Vimeo API.',
url='https://developer.vimeo.com/',
author='Vimeo',
author_email='[email protected]',
license='Apache License, Version 2.0, January 2004',
packages=['vimeo', 'vimeo/auth'],
install_requires=['requests>=2.4.0'],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Environment :: Web Environment',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet',
'Topic :: Multimedia :: Video',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)