-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
95 lines (87 loc) · 2.3 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
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "wenv"
description = "Running Python on Wine"
authors = [{name = "Sebastian M. Ernst", email = "[email protected]"}]
maintainers = [{name = "Sebastian M. Ernst", email = "[email protected]"}]
keywords = ["wine", "cross platform"]
readme = "README.md"
license = {file = "LICENSE"}
requires-python = ">=3.7"
dependencies = []
classifiers = [
"Development Status :: 4 - Beta",
"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 :: 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.scripts]
wenv = "wenv:cli"
_wenv_python = "wenv:shebang"
[project.optional-dependencies]
dev = [
"black",
"pytest",
"coverage[toml]",
"pytest-cov",
"python-lsp-server[all]",
"Sphinx",
"sphinx_rtd_theme",
"sphinx-autodoc-typehints",
"typeguard",
"myst-parser",
"twine",
]
[project.urls]
Home = "https://github.com/pleiszenburg/wenv"
Documentation = "https://wenv.readthedocs.io/en/latest/"
Source = "https://github.com/pleiszenburg/wenv"
[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
[tool.coverage.paths]
source = ["src"]
[tool.pytest.ini_options]
testpaths = ["tests"]