forked from cloudinary/pycloudinary
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (23 loc) · 798 Bytes
/
setup.py
File metadata and controls
25 lines (23 loc) · 798 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
from setuptools import setup, find_packages
version = '1.3.2'
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 :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Topic :: Internet :: WWW/HTTP",
],
include_package_data=True,
zip_safe=False,
test_suite="tests"
)