-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.cfg
More file actions
29 lines (23 loc) · 738 Bytes
/
setup.cfg
File metadata and controls
29 lines (23 loc) · 738 Bytes
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
[metadata]
name = program-markers
version = 0.5.5b1
author = Theodoros Theodoridis
author_email = theodort@inf.ethz.ch
description = Inserts markers in C/C++ code. Markers expose information about the optimizations a compiler has applied, e.g., whether a piece of code was dead code eliminated.
long_description = file: README.md
long_description_content_type = text/markdown
license = Apache License 2.0
url = https://github.com/DeadCodeProductions/program-markers
classifiers =
Programming Language :: Python :: 3
[options]
packages=find:
python_requires = >= 3.10
include_package_data = True
install_requires =
diopter >= 0.0.26
[options.packages.find]
where=python_src
[flake8]
max-line-length = 88
extend-ignore = E203