forked from cloudconvert/cloudconvert-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (31 loc) · 1.1 KB
/
Copy pathsetup.py
File metadata and controls
36 lines (31 loc) · 1.1 KB
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
35
36
from __future__ import print_function
from setuptools import setup
setup(
name='cloudconvert',
version='1.0.0',
url='https://github.com/cloudconvert/cloudconvert-python',
license='MIT',
author='Josias Montag',
tests_require=['nosetests'],
description='Official CloudConvert API wrapper',
packages=['cloudconvert'],
include_package_data=True,
platforms='any',
zip_safe=False,
keywords=["cloudconvert", "convert"],
install_requires = ['requests>=2.3.0'],
classifiers=[
"License :: OSI Approved :: BSD License",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.2",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System :: Archiving :: Packaging",
],
)