File: setup.cfg

package info (click to toggle)
presets 1.0.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 172 kB
  • sloc: python: 177; makefile: 150
file content (42 lines) | stat: -rw-r--r-- 1,111 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
[tool:pytest]
addopts = -v --cov --cov-branch --cov-report=xml tests


[metadata]
name = presets
version = attr: presets.version
description = A python module to manipulate default parameters of a module's functions
long_description = file: README.md
author = Brian McFee
url = http://github.com/bmcfee/presets
download_url = http://github.com/bmcfee/presets/releases
license = ISC
license_file = LICENSE
license_file_content_type = text/markdown; charset=UTF-8
classifiers = 
    License :: OSI Approved :: ISC License (ISCL)
    Programming Language :: Python
    Development Status :: 3 - Alpha
    Intended Audience :: Developers
    Topic :: Software Development
    Programming Language :: Python :: 3
    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


[options]
packages = find:
python_requires >= 3.8

[options.extras_require]
docs =
    numpydoc

tests = 
    coverage
    pytest
    pytest-cov