forked from michaelmior/pycloudinary
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (25 loc) · 861 Bytes
/
setup.py
File metadata and controls
27 lines (25 loc) · 861 Bytes
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
from setuptools import setup, find_packages
import sys, os
version = '0.2.3'
setup(name='cloudinary',
version=version,
description="Python interface to Cloudinary",
long_description='',
keywords='cloudinary image upload transformation cdn',
author='Cloudinary',
author_email='info@cloudinary.com',
url='http://cloudinary.com',
license='MIT',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Internet :: WWW/HTTP",
],
include_package_data=True,
zip_safe=False,
test_suite="tests",
install_requires=["poster"]
)