-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (27 loc) · 910 Bytes
/
setup.py
File metadata and controls
29 lines (27 loc) · 910 Bytes
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
from setuptools import setup, find_packages
from libbgp import __version__
with open('README.rst') as f:
long_description = f.read()
setup(
name='libbgp',
version=__version__,
url='https://github.com/smartbgp/libbgp',
license='Apache 2.0',
author='Peng Xiao',
author_email='xiaoquwl@gmail.com',
keywords='BGP BMP Python',
description='Python BGP/BMP Message parser lib',
long_description=long_description,
platforms='any',
packages=find_packages(),
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7'
]
)