-
Notifications
You must be signed in to change notification settings - Fork 77
/
pyproject.toml
43 lines (39 loc) · 1.32 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
[project]
name = "multicamselfcal"
version = "0.3.2"
description = "wrapper for the Octave/Matlab multicamselfcal library"
authors = [{ name = "John Stowers"}]
maintainers = [{ name = "Andrew Straw", email = "[email protected]" }]
readme = "README.md"
requires-python = ">=3.8"
urls.homepage = "https://github.com/strawlab/multicamselfcal"
dependencies = [
"numpy",
"PyYAML",
"importlib-resources >= 6",
]
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = [
"pymulticamselfcal", # Python wrapper
"MultiCamSelfCal", # Octave/Matlab MCSC code
"MultiCamSelfCal.BlueCLocal",
"MultiCamSelfCal.CoreFunctions",
"MultiCamSelfCal.FindingPoints",
"MultiCamSelfCal.LocalAlignments",
"MultiCamSelfCal.MartinecPajdla",
"MultiCamSelfCal.MartinecPajdla.fill_mm",
"MultiCamSelfCal.MartinecPajdla.fill_mm_test",
"MultiCamSelfCal.MartinecPajdla.utils",
"MultiCamSelfCal.OutputFunctions",
"MultiCamSelfCal.Ransac",
"CommonCfgAndIO", # Octave/Matlab MCSC code
"RadialDistortions", # Octave/Matlab MCSC code
"CalTechCal", # Octave/Matlab MCSC code
"RansacM", # Octave/Matlab MCSC code
]
[tool.setuptools.package-data]
# include all .m files as package data for python
"*" = ["*.m"]