crl-monitor/client/setup.py

30 lines
992 B
Python
Raw Permalink Normal View History

2015-02-24 12:20:56 +00:00
#!/usr/bin/python
# -*- coding: utf-8 -*-
from setuptools import setup
setup(
name='pypssl',
2015-08-27 12:34:21 +00:00
version='2.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'],
2015-08-27 12:29:59 +00:00
scripts=['bin/pypssl'],
2015-02-24 12:20:56 +00:00
classifiers=[
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
2015-04-30 11:50:59 +00:00
'Development Status :: 5 - Production/Stable',
2015-02-24 12:20:56 +00:00
'Environment :: Console',
'Intended Audience :: Science/Research',
'Intended Audience :: Telecommunications Industry',
2015-04-30 11:50:59 +00:00
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
2015-02-24 12:20:56 +00:00
'Topic :: Security',
'Topic :: Internet',
],
2015-08-27 12:29:59 +00:00
install_requires=['requests', 'python-dateutil'],
2015-02-24 13:15:51 +00:00
package_data={'': ['*.md', '*.rst', 'LICENSE']},
2015-02-24 12:20:56 +00:00
)