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
import setuptools
from distutils.core import setup
setup(name='azure-cosmos',
version='3.1.1',
description='Azure Cosmos Python SDK',
author="Microsoft",
author_email="askdocdb@microsoft.com",
maintainer="Microsoft",
maintainer_email="askdocdb@microsoft.com",
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.*']))
|