forked from Azure/azure-cosmos-python
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
29 lines (27 loc) · 1.1 KB
/
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
28
29
#!/usr/bin/env python
from distutils.core import setup
import setuptools
setup(name='pydocumentdb',
version='2.3.1',
description='Azure DocumentDB Python SDK',
author="Microsoft",
author_email="[email protected]",
maintainer="Microsoft",
maintainer_email="[email protected]",
url="https://github.com/Azure/azure-documentdb-python",
license='MIT',
install_requires=['six >=1.6', 'requests>=2.10.0'],
classifiers=[
'License :: OSI Approved :: MIT License',
'Intended Audience :: Developers',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: Implementation :: CPython',
'Topic :: Software Development :: Libraries :: Python Modules'
],
packages=setuptools.find_packages(exclude=['test', 'test.*']))