crl-monitor/client/setup.py
2015-08-27 14:34:21 +02:00

29 lines
992 B
Python

#!/usr/bin/python
# -*- coding: utf-8 -*-
from setuptools import setup
setup(
name='pypssl',
version='2.1',
author='Raphaël Vinot',
author_email='raphael.vinot@circl.lu',
maintainer='Raphaël Vinot',
url='https://github.com/adulau/crl-monitor/tree/master/client',
description='Python API for PSSL.',
long_description=open('README.md').read(),
packages=['pypssl'],
scripts=['bin/pypssl'],
classifiers=[
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Science/Research',
'Intended Audience :: Telecommunications Industry',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Topic :: Security',
'Topic :: Internet',
],
install_requires=['requests', 'python-dateutil'],
package_data={'': ['*.md', '*.rst', 'LICENSE']},
)