-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject-toml.py
More file actions
88 lines (78 loc) · 2.27 KB
/
Copy pathpyproject-toml.py
File metadata and controls
88 lines (78 loc) · 2.27 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
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "preserve"
dynamic = ["version"]
description = "Cross-platform tool for preserving and managing symbolic links"
readme = "README.md"
authors = [
{name = "Dustin Darcy", email = "6962246+djdarcy@users.noreply.github.com"}
]
license = {text = "GPL-3.0"}
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS :: MacOS X",
"Operating System :: OS Independent",
"Topic :: System :: Filesystems",
"Topic :: Utilities",
]
keywords = ["symlinks", "symbolic links", "network paths", "UNC paths", "file management"]
requires-python = ">=3.6"
dependencies = [
'pathlib;python_version<"3.4"',
]
[project.optional-dependencies]
windows = [
"pywin32>=223",
]
dev = [
"pytest>=6.0.0",
"pytest-cov>=2.10.0",
"flake8>=3.8.0",
"mypy>=0.800",
"black>=20.8b1",
]
docs = [
"sphinx>=3.0.0",
"sphinx-rtd-theme>=0.5.0",
]
[project.urls]
"Bug Reports" = "https://github.com/djdarcy/preserve/issues"
"Source" = "https://github.com/djdarcy/preserve"
"Documentation" = "https://github.com/djdarcy/preserve#readme"
[project.scripts]
preserve = "preserve.cli:main"
[tool.setuptools]
packages = ["preserve"]
[tool.setuptools.dynamic]
version = {attr = "preserve.__version__"}
[tool.black]
line-length = 100
target-version = ['py36', 'py37', 'py38', 'py39']
[tool.isort]
profile = "black"
line_length = 100
[tool.mypy]
python_version = "3.6"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = false
disallow_incomplete_defs = false
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = "test_*.py"
python_functions = "test_*"
python_classes = "Test*"
addopts = "--cov=preserve --cov-report=term-missing"