-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
27 lines (25 loc) · 795 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
import os
from setuptools import setup, find_packages
long_description = file('README.rst','r').read()
setup(
name='vimeo-wrapper',
version='0.4.4',
description='A thin wrapper around requests for vimeo',
long_description=long_description,
author='Okke Formsma',
author_email='[email protected]',
url='http://github.com/okke-formsma/vimeo-wrapper',
packages=['vimeo'],
install_requires=[
'requests>=2.0',
'requests_oauthlib',
],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
],
)