~andrewjbeach/juju-ci-tools/make-local-patcher

« back to all changes in this revision

Viewing changes to azure-sdk-for-python-master/setup.py

  • Committer: Aaron Bentley
  • Date: 2014-02-28 16:40:22 UTC
  • mto: This revision was merged to the branch mainline in revision 257.
  • Revision ID: aaron.bentley@canonical.com-20140228164022-kfip2tphn9m9invi
Add juju-backup script.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/usr/bin/env python
 
2
 
 
3
#-------------------------------------------------------------------------
 
4
# Copyright (c) Microsoft.  All rights reserved.
 
5
#
 
6
# Licensed under the Apache License, Version 2.0 (the "License");
 
7
# you may not use this file except in compliance with the License.
 
8
# You may obtain a copy of the License at
 
9
#   http://www.apache.org/licenses/LICENSE-2.0
 
10
#
 
11
# Unless required by applicable law or agreed to in writing, software
 
12
# distributed under the License is distributed on an "AS IS" BASIS,
 
13
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 
14
# See the License for the specific language governing permissions and
 
15
# limitations under the License.
 
16
#--------------------------------------------------------------------------
 
17
 
 
18
from distutils.core import setup
 
19
 
 
20
# To build:
 
21
# python setup.py sdist
 
22
#
 
23
# To install:
 
24
# python setup.py install
 
25
#
 
26
# To register (only needed once):
 
27
# python setup.py register
 
28
#
 
29
# To upload:
 
30
# python setup.py sdist upload
 
31
 
 
32
setup(name='azure',
 
33
      version='0.7.1',
 
34
      description='Windows Azure client APIs',
 
35
      license='Apache License 2.0',
 
36
      author='Microsoft Corporation',
 
37
      author_email='ptvshelp@microsoft.com',
 
38
      url='https://github.com/WindowsAzure/azure-sdk-for-python',
 
39
      classifiers=[
 
40
        'Development Status :: 5 - Production/Stable',
 
41
        'Programming Language :: Python',
 
42
        'Programming Language :: Python :: 2.7',
 
43
        'License :: OSI Approved :: Apache Software License'],
 
44
      packages=['azure',
 
45
                'azure.http',
 
46
                'azure.servicebus',
 
47
                'azure.storage',
 
48
                'azure.servicemanagement']
 
49
     )