-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
39 lines (34 loc) · 1.09 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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "scipion-em-fidder"
dynamic = ["version"]
description = "Plugin to use fidder 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-fidder"
Issues = "https://github.com/scipion-em/scipion-em-fidder/issues"
[tool.setuptools.dynamic]
version = {attr = "fidder.__version__"}
[tool.setuptools.package-data]
"fidder" = ["protocols.conf", "icon.png", "templates/*"]
[project.entry-points."pyworkflow.plugin"]
fidder = "fidder"