-
-
Notifications
You must be signed in to change notification settings - Fork 733
Expand file tree
/
Copy pathpyproject-commoncode.toml
More file actions
107 lines (89 loc) · 2.2 KB
/
Copy pathpyproject-commoncode.toml
File metadata and controls
107 lines (89 loc) · 2.2 KB
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
[build-system]
requires = [ "flot>=0.7.0" ]
build-backend = "flot.buildapi"
[project]
name = "commoncode"
version = "32.4.2"
authors = [
{ name = "nexB. Inc. and others", email = "info@aboutcode.org" },
]
license = { text = "Apache-2.0" }
# description must be on ONE line https://github.com/pypa/setuptools/issues/1390
description = "Set of common utilities, originally split from ScanCode"
long_description_content_type = "text/x-rst"
readme = "src/commoncode/README.rst"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Software Development",
"Topic :: Utilities",
]
keywords = [
"utilities",
"scancode-toolkit"
]
metadata_files = [
"apache-2.0.LICENSE",
"NOTICE",
"AUTHORS.rst",
"CHANGELOG.rst",
"CODE_OF_CONDUCT.rst",
"README.rst",
"commoncode.ABOUT"
]
requires-python = ">=3.10"
[project.urls]
Homepage = "https://github.com/nexB/scancode-toolkit"
dependencies = [
"attrs >= 18.1,!=20.1.0;python_version<'3.11'",
"attrs >= 22.1.0;python_version>='3.11'",
"Beautifulsoup4[chardet] >= 4.13.0",
"click >= 8.3.0",
"requests[use_chardet_on_py3] >= 2.7.0",
"saneyaml >= 0.5.2",
"text_unidecode >= 1.0"
]
[project.optional-dependencies]
dev = [
"pytest >= 7.0.1",
"pytest-xdist >= 2",
"aboutcode-toolkit >= 11.1.1",
"pycodestyle >= 2.8.0",
"twine",
"ruff",
"Sphinx>=5.0.2",
"sphinx-rtd-theme>=1.0.0",
"sphinx-reredirects >= 0.1.2",
"doc8>=0.11.2",
"sphinx-autobuild",
"sphinx-rtd-dark-mode>=1.3.0",
"sphinx-copybutton"
]
[tool.flot]
wheel_path_prefixes_to_strip = [ "src" ]
includes = [
"src/commoncode/*",
]
excludes = [
"docs/build/**/*",
# Python compiled files
"**/*.py[cod]",
"**/*.egg-info",
# Various junk and temp files
"**/.DS_Store",
"**/*~",
"**/.*.sw[po]",
"**/.ve",
"**/*.bak",
"**/.ipynb_checkpoints",
]
metadata_files = [
"*.LICENSE",
"NOTICE",
"AUTHORS.rst",
"CHANGELOG.rst",
"CODE_OF_CONDUCT.rst",
]
editable_paths = [ "src/commoncode/", "tests/commoncode/" ]