-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.cfg
53 lines (46 loc) · 1.13 KB
/
setup.cfg
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
# -*- coding: utf-8 -*-
#
# This file is part of COUNTER-Robots.
# Copyright (C) 2025 CERN.
#
# COUNTER-Robots is free software; you can redistribute it and/or modify it
# under the terms of the MIT License; see LICENSE file for more details.
[metadata]
name = counter-robots
version = attr: counter_robots.__version__
description = "Library for COUNTER-compliant detection of machines and robots."
long_description = file: README.rst, CHANGES.rst
keywords = COUNTER, user-agent, robot detection
license = MIT
author = Invenio Software
author_email = [email protected]
platforms = any
url = https://github.com/inveniosoftware/counter-robots
classifiers =
Development Status :: 5 - Production/Stable
[options]
include_package_data = True
packages = find:
python_requires = >=3.7
zip_safe = False
install_requires =
setup_requires =
pytest-runner>=2.6.2
[options.extras_require]
tests =
pytest-invenio>=1.4.0
docs =
Sphinx>=1.5.1
all=
pytest-invenio>=1.4.0
Sphinx>=1.5.1
[aliases]
test = pytest
[build_sphinx]
source-dir = docs/
build-dir = docs/_build
all_files = 1
[bdist_wheel]
universal = 1
[pydocstyle]
add_ignore = D401