File: setup.cfg

package info (click to toggle)
python-packageurl 0.17.5-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 5,016 kB
  • sloc: python: 1,964; makefile: 39
file content (109 lines) | stat: -rw-r--r-- 2,058 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
[metadata]
name = packageurl-python
version = 0.17.5
license = MIT
description = A purl aka. Package URL parser and builder
long_description = file:README.rst
author = the purl authors
url = https://github.com/package-url/packageurl-python
classifiers =
    Development Status :: 4 - Beta
    Intended Audience :: Developers
    License :: OSI Approved :: MIT License
    Operating System :: OS Independent
    Programming Language :: Python
    Programming Language :: Python :: 3 :: Only
    Programming Language :: Python :: 3.8
    Programming Language :: Python :: 3.9
    Programming Language :: Python :: 3.10
    Programming Language :: Python :: 3.11
    Programming Language :: Python :: 3.12
    Programming Language :: Python :: 3.13
    Topic :: Software Development :: Libraries
    Topic :: Utilities
    Typing :: Typed
keywords =
    package
    url
    package manager
    package url
license_files =
    - mit.LICENSE
    - AUTHORS.rst
    - README.rst
    - CONTRIBUTING.rst
    - CHANGELOG.rst

[options]
python_requires = >=3.8
packages = find:
package_dir = =src
include_package_data = true
zip_safe = false
install_requires =

[options.packages.find]
where = src

[options.package_data]
packageurl-python = py.typed

[options.extras_require]
lint =
    isort
    black
    mypy
test =
    pytest
build =
    setuptools
    wheel
sqlalchemy =
    sqlalchemy >= 2.0.0

[isort]
force_single_line = True
line_length = 100
known_django = django
sections = FUTURE,STDLIB,DJANGO,THIRDPARTY,FIRSTPARTY,LOCALFOLDER

[mypy]
python_version = 3.8

files = src/packageurl/__init__.py
show_error_codes = True
pretty = True

strict = True

[tool:pytest]
norecursedirs =
    .git
    tmp
    dist
    build
    _build
    local
    ci
    docs
    man
    share
    samples
    .cache
    .settings
    Include
    include
    Lib
    lib
    Scripts
    thirdparty
    tmp
    src/packageurl/contrib
python_files = *.py
python_classes=Test
python_functions=test
addopts =
    -rfExXw
    --strict-markers
    --ignore setup.py
    --doctest-modules