1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
|
#! /usr/bin/env python
from setuptools import setup, find_packages
setup(name="robot-detection",
version="0.4",
author="Rory McCann",
author_email="rory@technomancy.org",
py_modules=['robot_detection'],
summary="Library for detecting if a HTTP User Agent header is likely to be a bot",
description="Library for detecting if a HTTP User Agent header is likely to be a bot",
url="https://github.com/rory/robot-detection",
license="GPLv3+",
test_suite='tests',
install_requires = [
],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content :: CGI Tools/Libraries',
'Topic :: Internet :: WWW/HTTP :: Site Management',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)
|