crl-monitor/client/setup.py
2015-02-24 13:20:56 +01:00

26 lines
801 B
Python

#!/usr/bin/python
# -*- coding: utf-8 -*-
from setuptools import setup
setup(
name='pypssl',
version='1.0',
author='Raphaël Vinot',
author_email='raphael.vinot@circl.lu',
maintainer='Raphaël Vinot',
url='https://github.com/CIRCL/PyPSSL',
description='Python API for PSSL.',
long_description=open('README.md').read(),
packages=['pypssl'],
classifiers=[
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Science/Research',
'Intended Audience :: Telecommunications Industry',
'Programming Language :: Python',
'Topic :: Security',
'Topic :: Internet',
],
install_requires=['requests'],
)