File: setup.py

package info (click to toggle)
robot-detection 0.4.0-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 416 kB
  • sloc: python: 1,440; makefile: 3
file content (30 lines) | stat: -rw-r--r-- 1,242 bytes parent folder | download
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',
            ],
)