mirror of
https://github.com/adulau/crl-monitor.git
synced 2024-11-21 17:47:09 +00:00
29 lines
992 B
Python
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']},
|
|
)
|