-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
102 lines (91 loc) · 2.25 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
[build-system]
build-backend = 'setuptools.build_meta'
requires = [
'setuptools>=61.0',
'setuptools_scm>=6.4',
]
[project]
name = 'PyCubaX'
description = "A new Python wrapper for Cuba: a library for multidimensional numerical integration"
authors = [
{name = 'Mike S Wang'},
{name = 'Johannes Buchner'},
]
maintainers = [
{name = 'Mike S Wang', email = "32841762+MikeSWang@users.noreply.github.com"},
]
license = {file = "LICENCE"}
classifiers = [
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: MacOS",
"Operating System :: POSIX :: Linux",
"Programming Language :: C",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Scientific/Engineering :: Mathematics",
"Intended Audience :: Science/Research",
"Intended Audience :: Education",
]
dynamic = [
'version',
'readme',
]
requires-python = '>=3.10'
[project.urls]
Source = "https://github.com/MikeSWang/PyCubaX"
Changelog = "https://github.com/MikeSWang/PyCubaX/blob/main/CHANGELOG.md"
# [tool.setuptools]
# packages = ["pycuba"]
# package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]
include = ["py*"]
namespaces = false
[tool.setuptools.dynamic]
# version = {attr = 'pycuba.__version__'}
readme = {file = "README.md"}
[tool.setuptools_scm]
[tool.autopep8]
in-place = true
recursive = true
aggressive = 3
max_line_length = 79
ignore = "E226,"
[tool.codespell]
count = true
quiet-level = 3
[tool.ruff]
target-version = 'py310'
line-length = 79
exclude = [
".eggs",
".git",
".git-rewrite",
".ipynb_checkpoints",
".nox",
".pyenv",
".pytest_cache",
".ruff_cache",
".tox",
".venv",
".vscode",
"__pypackages__",
"build",
"dist",
"node_modules",
"site-packages",
"venv",
]
[tool.ruff.lint]
fixable = ['ALL']
unfixable = []
[tool.ruff.format]
quote-style = 'preserve'
indent-style = 'space'
line-ending = 'auto'
skip-magic-trailing-comma = true
docstring-code-format = false
docstring-code-line-length = 'dynamic'