-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
36 lines (32 loc) · 1.01 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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "scipion-em-gapstop"
dynamic = ["version"]
description = "Plugin to use gapstop within the Scipion framework"
authors = [
{name = "Scipion Team", email = "[email protected]"}
]
dependencies = [
"scipion-em-tomo>=3.9.1",
]
requires-python = ">=3.8"
readme = "README.rst"
license = {text = "GNU General Public License v3 (GPLv3)"}
classifiers = [
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
"Development Status :: 4 - Beta",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3",
]
keywords = ["scipion", "cryoem", "cryoet", "imageprocessing", "scipion-3.0"]
[project.urls]
Homepage = "https://github.com/scipion-em/scipion-em-gapstop"
Issues = "https://github.com/scipion-em/scipion-em-gapstop/issues"
[tool.setuptools.dynamic]
version = {attr = "gapstop.__version__"}
[project.entry-points."pyworkflow.plugin"]
gapstop = "gapstop"