-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpyproject.toml
54 lines (47 loc) · 1.52 KB
/
pyproject.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
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "ros_license_toolkit"
version = "2.0.1"
description = "Checks ROS packages for correct license declaration."
readme = "README.md"
authors = [
]
license = {file = "LICENSE"}
classifiers = [
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Framework :: Robot Framework :: Tool",
"Topic :: Software Development :: Quality Assurance",
"Topic :: Software Development :: Libraries :: Python Modules",
]
keywords = ["ros", "license", "toolkit", "oss", "packages"]
dependencies = [
"gitpython",
"rospkg",
"scancode-toolkit>=32.0.8",
"requests",
"python-Levenshtein"
]
requires-python = ">=3.7"
[project.optional-dependencies]
dev = ["pytest", "pytest-cov", "pycodestyle", "flake8", "mypy", "isort", "bumpver"]
[project.urls]
homepage = "https://github.com/boschresearch/ros_license_toolkit"
repository = "https://github.com/boschresearch/ros_license_toolkit"
[project.scripts]
ros_license_toolkit = "ros_license_toolkit.main:main"
[tool.black]
line-length = 100
[tool.isort]
profile = "black"
line_length = 100
[tool.codespell]
ignore-words-list = 'assertIn'