-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
105 lines (91 loc) · 2.69 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
104
105
[project]
name = "multyscale"
description = "Composable multiscale spatial filtering models"
readme = "README.md"
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
]
keywords = [
"visual perception",
"spatial filtering",
"multiscale",
"computational modeling",
]
license = { file = "LICENSE" }
maintainers = [{ name = "Joris Vincent", email = "[email protected]" }]
version = "0.2.0"
requires-python = ">=3.8"
dependencies = ["numpy", "scipy", "matplotlib", "Pillow"]
[project.optional-dependencies]
dev = ["pytest", "black", "pyupgrade", "flake8"]
docs = [
"Sphinx",
"sphinx-autodoc-typehints",
"sphinx-rtd-theme",
"sphinx-tabs",
"sphinxcontrib-applehelp",
"sphinxcontrib-bibtex",
"sphinxcontrib-devhelp",
"sphinxcontrib-htmlhelp",
"sphinxcontrib-jsmath",
"sphinxcontrib-napoleon",
"sphinxcontrib-qthelp",
"sphinxcontrib-serializinghtml",
"ipykernel",
"ipython",
"ipython-genutils",
"ipywidgets",
"jupyter-client",
"jupyter-core",
"jupyterlab-pygments",
"jupyterlab-widgets",
"nbclient",
"nbconvert",
"nbformat",
"nbsphinx",
"nbsphinx-link",
"notebook",
"rstcheck",
"widgetsnbextension",
]
[project.urls]
repository = "https://github.com/computational-psychology/stimupy.git"
[build-system]
requires = ["setuptools >= 40.9.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["."] # list of folders that contain the packages (["."] by default)
include = [
"multyscale*",
] # package names should match these glob patterns (["*"] by default)
namespaces = false # to disable scanning PEP 420 namespaces (true by default)
[tool.semantic_release]
commit_message = "v{version}\n\nThis commit was automatically generated by python-semantic-release"
major_on_zero = false
tag_format = "v{version}"
version_variables = [ # version location(s)
"multyscale/__init__.py:__version__", # in the init.py, so that multyscale.__version__ works
"pyproject.toml:version", # in this pyproject.toml
]
build_command = "pip3 install --upgrade build; python3 -m build"
[tool.semantic_release.branches.main]
match = "(main|master|build_.*)"
prerelease_token = "rc"
prerelease = false
[tool.semantic_release.remote]
name = "tubgitlab"
type = "gitlab"
# [tool.semantic_release.publish]
# upload_to_vcs_release = true # upload sdist, wheel to release-tag
[tool.black]
line-length = 99
target-version = ["py311"]
[tool.isort]
profile = "black"
line_length = 99
[tool.codespell]
skip = "./docs/_build/*,*.ipynb"
#exclude-file = ".codespell.ignore"