-
Notifications
You must be signed in to change notification settings - Fork 204
/
Copy pathpyproject-aboutcode.hashid.toml
74 lines (61 loc) · 1.52 KB
/
pyproject-aboutcode.hashid.toml
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
68
69
70
71
72
73
[build-system]
requires = [ "flot>=0.7.0" ]
build-backend = "flot.buildapi"
[project]
name = "aboutcode.hashid"
version = "0.2.0"
description = "A library for aboutcode hash-based identifiers for VCID, and PURLs"
readme = "aboutcode/hashid/README.rst"
license = { text = "Apache-2.0 AND Python-2.0" }
requires-python = ">=3.8"
authors = [
{ name = "AboutCode, nexB Inc. and others", email = "[email protected]" },
]
keywords = [
"purl",
"Package-URL",
"open source",
"package",
"sca",
"scan",
"VCID",
"hash",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Software Development",
"Topic :: Utilities",
]
dependencies = [
"packageurl_python >= 0.15.6",
]
urls = { Homepage = "https://github.com/aboutcode-org/vulnerablecode" }
[tool.bumpversion]
current_version = "0.1.0"
allow_dirty = true
files = [
{ filename = "pyproject-aboutcode.hashid.toml" },
]
[tool.flot]
includes = [
"aboutcode/**/*",
]
excludes = [
# Python compiled files
"**/*.py[cod]",
"**/*.egg-info",
# Various junk and temp files
"**/.DS_Store",
"**/*~",
"**/.*.sw[po]",
"**/.ve",
"**/*.bak",
"**/.ipynb_checkpoints",
"aboutcode/hashid/python.LICENSE",
"aboutcode/hashid/tests/**/*",
]
metadata_files = ["apache-2.0.LICENSE", "NOTICE", "aboutcode/hashid/python.LICENSE"]
editable_paths = ["aboutcode"]