-
-
Notifications
You must be signed in to change notification settings - Fork 51
/
pyproject.toml
100 lines (90 loc) · 2.94 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
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
[build-system]
build-backend = 'setuptools.build_meta'
requires = ['setuptools', 'setuptools-scm']
[project]
name = 'portalocker'
dynamic = ['version']
authors = [{name = 'Rick van Hattem', email = 'wolph@wol.ph'}]
license = {text = 'BSD-3-Clause'}
description = 'Wraps the portalocker recipe for easy usage'
keywords = [
'locking',
'locks',
'with',
'statement',
'windows',
'linux',
'unix',
]
readme = 'README.rst'
classifiers = [
'Development Status :: 5 - Production/Stable',
'Development Status :: 6 - Mature',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Operating System :: MacOS :: MacOS X',
'Operating System :: MacOS',
'Operating System :: Microsoft :: MS-DOS',
'Operating System :: Microsoft :: Windows',
'Operating System :: Microsoft',
'Operating System :: POSIX :: BSD :: FreeBSD',
'Operating System :: POSIX :: BSD',
'Operating System :: POSIX :: Linux',
'Operating System :: POSIX :: SunOS/Solaris',
'Operating System :: POSIX',
'Operating System :: Unix',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: IronPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Programming Language :: Python :: Implementation',
'Programming Language :: Python',
'Topic :: Education :: Testing',
'Topic :: Office/Business',
'Topic :: Other/Nonlisted Topic',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Software Development :: Libraries',
'Topic :: System :: Monitoring',
]
requires-python = '>=3.8'
dependencies = ['pywin32>=226; platform_system == "Windows"']
[project.urls]
bugs = 'https://github.com/wolph/portalocker/issues'
documentation = 'https://portalocker.readthedocs.io/en/latest/'
repository = 'https://github.com/wolph/portalocker/'
[project.optional-dependencies]
docs = ['sphinx>=1.7.1']
tests = [
'pytest>=5.4.1',
'pytest-cov>=2.8.1',
'pytest-timeout>=2.1.0',
'sphinx>=6.0.0',
'pytest-mypy>=0.8.0',
'types-redis',
'redis',
]
redis = ['redis']
[tool.setuptools]
platforms = ['any']
include-package-data = false
[tool.setuptools.dynamic]
version = { attr = 'portalocker.__about__.__version__' }
[tool.setuptools.packages.find]
include = ['portalocker']
[tool.setuptools.package-data]
portalocker = ['py.typed', 'msvcrt.pyi']
[tool.black]
line-length = 79
skip-string-normalization = true
[tool.codespell]
skip = '*/htmlcov,./docs/_build,*.asc'
[tool.pyright]
include = ['portalocker', 'portalocker_tests']
exclude = ['dist/*']