generated from aboutcode-org/skeleton
-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject-aboutcode.federatedcode.toml
80 lines (68 loc) · 1.67 KB
/
pyproject-aboutcode.federatedcode.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
74
75
76
77
78
79
80
[build-system]
requires = [ "flot>=0.7.0" ]
build-backend = "flot.buildapi"
[project]
name = "aboutcode.federatedcode"
version = "0.1.0"
description = "A library for FederatedCode client"
readme = "aboutcode/federatedcode/README.rst"
license = { text = "Apache-2.0 AND Python-2.0" }
requires-python = ">=3.9"
authors = [
{ name = "AboutCode, nexB Inc. and others", email = "[email protected]" },
]
keywords = [
"purl",
"Package-URL",
"open source",
"package",
"sca",
"scan",
"activitypub",
"dependencies",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Software Development",
"Topic :: Utilities",
]
dependencies = [
"aboutcode.hashid>=0.2.0",
"click>=8.1.7",
"Django>=5.1.2",
"packageurl_python >= 0.16.0",
"python-dotenv>=1.0.1",
"requests>=2.32.3",
"saneyaml>=0.6.0",
]
urls = { Homepage = "https://github.com/aboutcode-org/federatedcode" }
[project.scripts]
federatedcode = "aboutcode.federatedcode.cli:handler"
[tool.bumpversion]
current_version = "0.1.0"
allow_dirty = true
files = [
{ filename = "pyproject-aboutcode.federatedcode.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/federatedcode/tests/**/*",
]
metadata_files = ["apache-2.0.LICENSE", "NOTICE"]
editable_paths = ["aboutcode"]