2015-02-24 12:20:56 +00:00
|
|
|
#!/usr/bin/python
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
from setuptools import setup
|
|
|
|
|
|
|
|
setup(
|
|
|
|
name='pypssl',
|
2015-02-24 13:15:51 +00:00
|
|
|
version='1.0.1',
|
2015-02-24 12:20:56 +00:00
|
|
|
author='Raphaël Vinot',
|
|
|
|
author_email='raphael.vinot@circl.lu',
|
|
|
|
maintainer='Raphaël Vinot',
|
2015-02-24 13:15:51 +00:00
|
|
|
url='https://github.com/adulau/crl-monitor/tree/master/client',
|
2015-02-24 12:20:56 +00:00
|
|
|
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'],
|
2015-02-24 13:15:51 +00:00
|
|
|
package_data={'': ['*.md', '*.rst', 'LICENSE']},
|
2015-02-24 12:20:56 +00:00
|
|
|
)
|