-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
39 lines (35 loc) · 1.16 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import sys
import os
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
if sys.version_info < (2,5):
raise NotImplementedError("Sorry, you need at least Python 2.5 or Python 3.x to use lldpy.")
__author__ = 'João Taveira Araújo'
__version__ = '0.0.5'
__license__ = 'MIT'
setup(name='lldpy',
version=__version__,
description= "Python wrapper for lldpctl (http://vincentbernat.github.io/lldpd/)",
author=__author__,
author_email='joao.taveira@gmail.com',
url='https://github.com/jta/lldpy',
packages=['lldpy'],
scripts=['bin/lldplogger'],
install_requires=[ "cffi" ],
license='MIT',
platforms = 'any',
classifiers=['Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.5',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
],
)