-
Notifications
You must be signed in to change notification settings - Fork 11
/
pyproject.toml
103 lines (96 loc) · 2.54 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
101
102
103
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "zugbruecke"
description = "Calling routines in Windows DLLs from Python scripts running under Linux, MacOS or BSD"
authors = [{name = "Sebastian M. Ernst", email = "[email protected]"}]
maintainers = [{name = "Sebastian M. Ernst", email = "[email protected]"}]
keywords = ["ctypes", "wine"]
readme = "README.md"
license = {file = "LICENSE"}
requires-python = ">=3.7"
dependencies = ["wenv >=0.5.1,<0.6.0"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: GNU Lesser General Public License v2 (LGPLv2)",
"Operating System :: MacOS",
"Operating System :: POSIX :: BSD",
"Operating System :: POSIX :: Linux",
"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",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Scientific/Engineering",
"Topic :: Software Development",
"Topic :: System :: Operating System",
"Topic :: System :: Operating System Kernels",
"Topic :: Utilities",
]
dynamic = ["version"]
[project.optional-dependencies]
dev = [
"flit",
"Jinja2",
"python-lsp-server[all]",
"Sphinx",
"sphinx_rtd_theme",
"sphinx-autodoc-typehints",
"myst-parser",
"toml",
"twine",
]
test = [
"hypothesis",
"pytest<7.0",
"coverage[toml]",
"pytest-cov",
"typeguard",
"numpy",
]
[project.urls]
Home = "https://github.com/pleiszenburg/zugbruecke"
Documentation = "https://zugbruecke.readthedocs.io/en/latest/"
Source = "https://github.com/pleiszenburg/zugbruecke"
[tool.black]
target-version = ['py37']
include = '\.pyi?$'
exclude = '''
/(
\.eggs
| \.git
| \.venv
| \.cache
| \.hypothesis
| \.ipynb_checkpoints
| \.pytest_cache
| .ropenproject
| _build
| build
| buck-out
| demo_dll
| dist
| env[0-9]{2}
| env
)/
'''
[tool.coverage.run]
branch = true
parallel = true
relative_files = true
source_pkgs = ["zugbruecke"]
[tool.coverage.paths]
source = [
"src/",
"C:\\*\\Lib\\site-packages\\",
]
[tool.pytest.ini_options]
testpaths = ["tests"]