-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (32 loc) · 839 Bytes
/
pyproject.toml
File metadata and controls
36 lines (32 loc) · 839 Bytes
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
[build-system]
requires = ['hatchling']
build-backend = 'hatchling.build'
[project]
name = 'easyimaging'
version = '1.0.0'
description = 'Example of a desktop application of advanced complexity with Python backend and EasyApp-based GUI'
authors = [
{name = 'Christian Dam Vedel', email = 'christian.vedel@ess.eu'}
]
readme = 'README.md'
license = {file = 'LICENSE'}
classifiers = [
'Development Status :: 2 - Pre-Alpha',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3'
]
requires-python = '>=3.11'
dependencies = [
'numpy<2'
]
[project.optional-dependencies]
ci = [
'validate-pyproject[all]',
'build',
'wheel'
]
[project.urls]
homepage = 'https://github.com/EasyScience/imaging-app'
[tool.hatch.build.targets.wheel]
packages = ['EasyImagingApp']
#artifacts = ['*.py', '*.qml', 'qmldir']