-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
38 lines (36 loc) · 1.17 KB
/
setup.py
File metadata and controls
38 lines (36 loc) · 1.17 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
37
38
# -*- coding: utf-8 -
#
# This file is part of python-voximplant released under the MIT license.
# See the LICENSE for more information.
import os
from setuptools import setup, find_packages
setup(
name='python-voximplant',
version=__import__('voximplant').VERSION,
description='python api client for voximplant.com',
long_description=file(
os.path.join(
os.path.dirname(__file__),
'README.md'
)
).read(),
author='SUVIT LLC',
author_email='mail@suvit.ru',
license='MIT',
url='http://github.com/suvitorg/python-voximplant',
zip_safe=False,
packages=find_packages(exclude=['docs', 'examples', 'tests']),
install_requires=['requests'],
include_package_data=True,
classifiers=[
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: MIT License',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Environment :: Web Environment',
'Topic :: Software Development',
]
)