-
Notifications
You must be signed in to change notification settings - Fork 14
/
pyproject.toml
38 lines (32 loc) · 1010 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
35
36
37
38
[build-system]
requires = ["setuptools>=45", "wheel", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[project]
name = "autolamella"
version = "0.3.5a1"
description = "Automatated ion beam milling for cryo-electron microscopy sample preparation."
authors = [
{name = "Patrick Cleeve", email = "[email protected]"},
]
readme = "README.md"
requires-python = ">=3.8"
license = {text = "MIT License"}
classifiers = [
"Programming Language :: Python :: 3.8",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Framework :: napari",
]
dependencies = [
"fibsem>=0.3.5a0",
]
[project.urls]
Homepage = "https://github.com/DeMarcoLab/autolamella"
"Bug Tracker" = "https://github.com/DeMarcoLab/autolamella/issues"
[project.scripts]
autolamella_ui = "autolamella.ui.AutoLamellaUI:main"
autoliftout_ui = "autolamella.ui.AutoLiftoutUIv2:main"
[tool.setuptools]
# packages = ["autolamella"]
[tool.setuptools.package-data]
"*" = ["*.yaml"]