Statistics
| Branch: | Tag: | Revision:

root / setup.py @ ad82bf43

History | View | Annotate | Download (1.1 kB)

1
# Copyright 2009 Shikhar Bhushan
2
# Copyright 2011 Leonidas Poulopoulos
3
#
4
# Licensed under the Apache License, Version 2.0 (the "License");
5
# you may not use this file except in compliance with the License.
6
# You may obtain a copy of the License at
7
#
8
#    http://www.apache.org/licenses/LICENSE-2.0
9
#
10
# Unless required by applicable law or agreed to in writing, software
11
# distributed under the License is distributed on an "AS IS" BASIS,
12
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
# See the License for the specific language governing permissions and
14
# limitations under the License.
15

    
16
from distutils.core import setup
17

    
18
setup(name='ncclient',
19
      version='0.3.2',
20
      description="Python library for NETCONF clients",
21
      author="Shikhar Bhushan, Leonidas Poulopoulos",
22
      author_email="shikhar@schmizz.net, leopoul@noc.grnet.gr",
23
      url="http://schmizz.net/ncclient/",
24
      packages=["ncclient", "ncclient/transport", "ncclient/operations"],
25
      license="Apache License 2.0",
26
      platforms=["Posix; OS X; Windows"],
27
      #classifiers=[]
28
      )