-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.cfg
68 lines (57 loc) · 1.54 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
57
58
59
60
61
62
63
64
65
66
67
[metadata]
name = python_sbom
description = Generate a software bill of materials for your Python project in SPDX.
long_description = file: README.rst, HISTORY.rst
version = 0.1.0
keywords = python_sbom
author = Jeff Licquia
author_email = [email protected]
license = Apache Software License 2.0
url = https://github.com/licquia/python_sbom
classifiers =
Development Status :: 2 - Pre-Alpha
Intended Audience :: Developers
License :: OSI Approved :: Apache Software License
Natural Language :: English
Programming Language :: Python :: 3
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
[options]
python_requires = >=3.6
include_package_data = True
zip_safe = False
packages = find:
test_suite = tests
install_requires =
Click >= 7.0
toml
spdx-tools
setup_requires =
pytest-runner
tests_require = pytest >= 3
[options.entry_points]
console_scripts =
python_sbom = python_sbom.cli:main
[options.packages.find]
include =
python_sbom
[bumpversion]
current_version = 0.1.0
commit = True
tag = True
[bumpversion:file:setup.py]
search = version='{current_version}'
replace = version='{new_version}'
[bumpversion:file:python_sbom/__init__.py]
search = __version__ = '{current_version}'
replace = __version__ = '{new_version}'
[bdist_wheel]
universal = 1
[flake8]
exclude = docs
[aliases]
# Define setup.py command aliases here
test = pytest
[tool:pytest]
collect_ignore = ['setup.py']