-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (46 loc) · 1.23 KB
/
pyproject.toml
File metadata and controls
51 lines (46 loc) · 1.23 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
[project]
name = "nexus-api-tools"
version = "0.1.0"
description = "Tools to migrate repositories between Nexus servers"
authors = [
{ name = " @zipkid" },
{ name = " @jvdmr" }
]
readme = "README.md"
requires-python = ">=3.7"
license = { text = "GPLv3" }
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Topic :: Software Development :: Build Tools",
"Topic :: System :: Software Distribution",
]
[project.scripts]
nexus-copy = "nexus_api_tools.nexus_copy:main"
[tool.pytest.ini_options]
testpaths = ["test"]
python_files = ["test_*.py"]
pythonpath = ["."]
[tool.black]
line-length = 88
target-version = ["py37"]
include = '\.pyi?$'
[tool.flake8]
max-line-length = 88
extend-ignore = "E203"
exclude = [
".git",
"__pycache__",
"build",
"dist",
"*.egg-info",
]
[project.urls]
"Repository" = "https://github.com/vrtdev/nexus_api_tools"
"Bug Tracker" = "https://github.com/vrtdev/nexus_api_tools/issues"