File: setup.cfg

package info (click to toggle)
python-executing 2.2.0-0.3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 11,860 kB
  • sloc: python: 10,235; sh: 48; makefile: 10
file content (48 lines) | stat: -rw-r--r-- 1,193 bytes parent folder | download | duplicates (2)
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
[metadata]
name = executing
author = Alex Hall
author_email = alex.mojaki@gmail.com
license = MIT
description = Get the currently executing AST node of a frame, and other information
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/alexmojaki/executing
classifiers =
    License :: OSI Approved :: MIT License
    Programming Language :: Python
    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 = executing
zip_safe = False
include_package_data = True
setup_requires = setuptools; setuptools_scm[toml]
python_requires = >=3.8

[options.extras_require]
tests=
    asttokens>=2.1.0
    ipython
    pytest
    coverage
    coverage-enable-subprocess
    littleutils
    rich; python_version >='3.11'

[options.package_data]
executing = py.typed

[coverage:run]
relative_files = True
include = executing/executing.py
parallel = true
branch = true

[bdist_wheel]
universal=1