-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
34 lines (30 loc) · 927 Bytes
/
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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "napari-ISM"
version = "1.0.8"
authors = [
{ name="Alessandro Zunino", email="alessandro.zunino@iit.it" },
]
description = "A Napari plugin for analysing and simulating ISM images"
readme = "README.md"
requires-python = ">=3.7"
license = {file = "LICENSE.txt"}
classifiers = [
"Framework :: napari",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Operating System :: OS Independent",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
]
[project.urls]
"Homepage" = "https://github.com/VicidominiLab/napari-ism"
"Documentation" = "https://brighteyes-ism.readthedocs.io"
[tool.black]
line-length = 79
[tool.isort]
profile = "black"
line_length = 79