30 lines
952 B
Python
30 lines
952 B
Python
#!/usr/bin/env python
|
|
# -*- coding: utf-8 -*-
|
|
from setuptools import setup
|
|
|
|
|
|
setup(
|
|
name='pybgpranking',
|
|
version='0.1',
|
|
author='Raphaël Vinot',
|
|
author_email='raphael.vinot@circl.lu',
|
|
maintainer='Raphaël Vinot',
|
|
url='https://github.com/D4-project/BGP-Ranking/client',
|
|
description='Python client for BGP Ranking',
|
|
packages=['pybgpranking'],
|
|
scripts=['bin/bgpranking'],
|
|
install_requires=['requests'],
|
|
classifiers=[
|
|
'License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)',
|
|
'Development Status :: 3 - Alpha',
|
|
'Environment :: Console',
|
|
'Operating System :: POSIX :: Linux',
|
|
'Intended Audience :: Science/Research',
|
|
'Intended Audience :: Telecommunications Industry',
|
|
'Intended Audience :: Information Technology',
|
|
'Programming Language :: Python :: 3',
|
|
'Topic :: Security',
|
|
'Topic :: Internet',
|
|
]
|
|
)
|