crl-monitor/client/setup.py

29 lines
945 B
Python
Raw 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-04-30 11:50:59 +00:00
version='1.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)',
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',
],
install_requires=['requests'],
2015-02-24 13:15:51 +00:00
package_data={'': ['*.md', '*.rst', 'LICENSE']},
2015-02-24 12:20:56 +00:00
)