File: setup.cfg

package info (click to toggle)
python-procset 1.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 532 kB
  • sloc: python: 2,607; makefile: 22
file content (51 lines) | stat: -rw-r--r-- 1,340 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
# packaging details ####################

[metadata]
name = procset
url = https://gitlab.inria.fr/bleuse/procset.py
project_urls =
    Documentation=https://procset.rtfd.io/en/stable/
author = Raphaƫl Bleuse
author_email = cs@research.bleuse.net
version = 1.0
description = Toolkit to manage sets of closed intervals.
long_description = file: README.rst
keywords =
    interval set
    scheduling
license = LGPLv3
classifiers =
    Development Status :: 5 - Production/Stable
    Intended Audience :: Developers
    Intended Audience :: Science/Research
    License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)
    Programming Language :: Python :: 3 :: Only
    Programming Language :: Python :: 3.5
    Programming Language :: Python :: 3.6
    Programming Language :: Python :: 3.7
    Topic :: Software Development :: Libraries :: Python Modules
obsoletes = interval_set
provides = interval_set

[options]
zip_safe = False
package_dir = =src
# intsetwrap is a transition module, and is planned for removal
py_modules = procset, intsetwrap

[options.extras_require]
test =
    coverage
    pytest
    pytest-cov
    interval_set  # tests for deprecated API


# tests' configuration ##################

[tool:pytest]
addopts = -v -r fxX --maxfail=25 --cov-report=html --cov

[coverage:run]
branch = True
source = src