-
Notifications
You must be signed in to change notification settings - Fork 21
/
setup.cfg
56 lines (51 loc) · 1.62 KB
/
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
# See https://packaging.python.org/en/latest/tutorials/packaging-projects
[metadata]
name = cbmc-starter-kit
version = 2.11
author = Mark R. Tuttle
author_email = [email protected]
description = CBMC starter kit makes it easy to add CBMC verification to a software project
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/model-checking/cbmc-starter-kit
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 =
gitpython
setuptools
python_requires = >=3.8
[options.packages.find]
where = src
[options.package_data]
# We want to two subtrees of data, but static configuration files do
# not appear to give us an easy way to do this.
cbmc_starter_kit =
etc/*
etc/bash_completion.d/*
template-for-ci-workflow/*
template-for-ci-workflow/*/*
template-for-ci-workflow/*/*/*
template-for-ci-workflow/*/*/*/*
template-for-proof/*
template-for-proof/*/*
template-for-proof/*/*/*
template-for-proof/*/*/*/*
template-for-repository/*
template-for-repository/*/*
template-for-repository/*/*/*
template-for-repository/*/*/*/*
template-for-repository/.gitignore
[options.entry_points]
console_scripts =
cbmc-starter-kit-setup = cbmc_starter_kit.setup:main
cbmc-starter-kit-setup-proof = cbmc_starter_kit.setup_proof:main
cbmc-starter-kit-setup-ci = cbmc_starter_kit.setup_ci:main
cbmc-starter-kit-update = cbmc_starter_kit.update:main