This repository has been archived by the owner on Jan 19, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 141
/
setup.py
41 lines (38 loc) · 1.48 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
30
31
32
33
34
35
36
37
38
39
40
41
#!/usr/bin/env python
from distutils.core import setup
from io import open
import setuptools
with open("README.md", encoding="utf-8") as f:
README = f.read()
with open("changelog.md", encoding="utf-8") as f:
CHANGELOG = f.read()
setup(name='azure-cosmos',
version='3.2.0',
description='Azure Cosmos Python SDK',
long_description=README + "\n\n" + CHANGELOG,
long_description_content_type="text/markdown",
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.*', 'azure', 'samples', 'samples.*', 'doc']),
extras_require={
':python_version<"3.0"': ['azure-nspkg'],
},
)