-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpyproject.toml
48 lines (40 loc) · 1.08 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
[build-system]
requires = ["setuptools",
"setuptools_scm",
"wheel"]
build-backend = 'setuptools.build_meta'
[project]
name = "drop_analysis"
description = "A program to capture and analyze images of droplets."
readme = "README.md"
requires-python = ">=3.8"
dynamic = ["version"]
authors = [{name = "Mathijs van Gorcum", email = "dropanalysis@vgorcum.com"}]
dependencies = [
"numpy",
"pandas",
"scipy",
"pyqt5",
"opencv-python-headless",
"openpyxl",
"fast-histogram",
"lsq-ellipse",
"imageio",
"shapely",
"pyqtgraph>=0.11.0",
"toml",
"h5py",
"appdirs"]
[tool.setuptools.package-data]
drop_analysis = ["data/*"]
[project.gui-scripts]
drop_analysis = "drop_analysis.__main__:main"
[project.scripts]
drop_analysis-cli = "drop_analysis.__main__:main"
[project.license]
file = "LICENSE"
[project.urls]
'Homepage' = 'https://drop-analysis.com'
'Documentation' = 'https://drop-analysis.com/usage.html'
'Source Code' = 'https://codeberg.org/mvgorcum/Sessile.drop.analysis'
'Issue Tracker' = 'https://codeberg.org/mvgorcum/Sessile.drop.analysis/issues'