forked from euratom-software/calcam
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
65 lines (56 loc) · 2.11 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "calcam"
description = "Spatial calibration tools for science & engineering camera systems."
authors = [{name = "Scott Silburn et. al.", email = "[email protected]"}]
license = {file = "LICENSE.txt"}
readme = {file = "README.md", content-type='text/markdown'}
requires-python = ">=3.5"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX :: Linux",
"Environment :: Console",
"Environment :: X11 Applications :: Qt",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"License :: OSI Approved :: European Union Public Licence 1.1 (EUPL 1.1)",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Scientific/Engineering :: Visualization",
"Topic :: Scientific/Engineering :: Image Processing"
]
dependencies = [
"scipy",
"matplotlib",
"vtk>=7,!=9.1.*",
"PyQt5",
"opencv-python-headless",
"h5py",
"triangle"
]
dynamic = ["version"]
[project.gui-scripts]
calcam = "calcam:start_gui"
[project.urls]
"Documentation" = 'https://euratom-software.github.io/calcam'
"Source" = 'https://github.com/euratom-software/calcam/'
"Issue Tracker" = 'https://github.com/euratom-software/calcam/issues'
"Zenodo" = 'https://doi.org/10.5281/zenodo.1478554'
[tool.setuptools]
zip-safe = false
packages = ["calcam","calcam.gui","calcam.builtin_image_sources"]
[tool.setuptools.package-data]
calcam = [
'gui/icons/*',
'gui/qt_designer_files/*.ui',
'gui/logo.png',
'builtin_image_sources/*.py',
'__version__',
]
[tool.setuptools.dynamic]
version = {file = ["calcam/__version__"]}