-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathsetup.cfg
42 lines (37 loc) · 972 Bytes
/
setup.cfg
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
# See https://packaging.python.org/en/latest/tutorials/packaging-projects
[metadata]
name = cbmc-viewer
version = 3.10
author = Mark R. Tuttle
author_email = mrtuttle@amazon.com
description = CBMC viewer produces a browsable summary of CBMC findings
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/model-checking/cbmc-viewer
license = Apache License 2.0
classifiers =
Programming Language :: Python :: 3
License :: OSI Approved :: Apache Software License
Operating System :: OS Independent
[options]
package_dir =
= src
packages = find:
include_package_data = True
install_requires =
jinja2
setuptools
voluptuous
python_requires = >=3.7
[options.packages.find]
where = src
[options.package_data]
cbmc_viewer =
etc/*
etc/bash_completion.d/*
templates/*
viewer.css
viewer.js
[options.entry_points]
console_scripts =
cbmc-viewer = cbmc_viewer.cbmc_viewer:main