File: setup.cfg

package info (click to toggle)
python-cssselect2 0.3.0-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 308 kB
  • sloc: python: 1,155; sh: 14; makefile: 13
file content (89 lines) | stat: -rw-r--r-- 1,789 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
[metadata]
name = cssselect2
url = https://cssselect2.readthedocs.io/
version = file: cssselect2/VERSION
license = BSD
license_file = LICENSE
description = CSS selectors for Python ElementTree
long_description = file: README.rst
long_description_content_type = text/x-rst
author = Simon Sapin
author_email = community@kozea.fr
platforms =
  Linux
  macOS
  Windows
keywords =
  css
  elementtree
classifiers =
  Development Status :: 5 - Production/Stable
  Intended Audience :: Developers
  License :: OSI Approved :: BSD License
  Programming Language :: Python :: 3
  Programming Language :: Python :: 3.5
  Programming Language :: Python :: 3.6
  Programming Language :: Python :: 3.7
  Programming Language :: Python :: 3.8
  Topic :: Internet :: WWW/HTTP
project_urls =
  Documentation = https://cssselect2.readthedocs.io/
  Code = https://github.com/Kozea/cssselect2/
  Issue tracker = https://github.com/Kozea/cssselect2/issues
  Donation = https://www.patreon.com/kozea

[options]
packages = find:
zip_safe = false
setup_requires = pytest-runner
install_requires =
  setuptools>=39.2.0
  tinycss2
  webencodings
tests_require =
  pytest-runner
  pytest-cov
python_requires = >= 3.5

[options.package_data]
cssselect2 = VERSION
cssselect2.tests = *

[options.extras_require]
doc =
  sphinx
  sphinx_rtd_theme
test =
  pytest-runner
  pytest-cov
  pytest-flake8
  pytest-isort

[bdist_wheel]
python-tag = py3

[build_sphinx]
source-dir = docs
build-dir = docs/_build

[aliases]
test = pytest

[tool:pytest]
norecursedirs = build dist .cache .eggs .git

[coverage:run]
branch = True
include = cssselect2/*

[coverage:report]
exclude_lines =
    pragma: no cover
    def __repr__
    raise NotImplementedError
omit =
    .*

[isort]
default_section = THIRDPARTY
multi_line_output = 4