-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
33 lines (30 loc) · 939 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
[build-system]
requires = ['hatchling']
build-backend = 'hatchling.build'
[project]
name = 'EasyApp'
version = '0.6.0'
description = 'Collection of graphical components to quickly create cross-platform applications in the EasyScience universe.'
authors = [
{name = 'Andrew Sazonov', email = '[email protected]'}
]
license = {file = 'LICENSE'}
classifiers = [
'Development Status :: 4 - Beta',
'License :: OSI Approved :: BSD License',
'Programming Language :: Other',
'Programming Language :: Python :: 3',
'Operating System :: MacOS',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX :: Linux'
]
requires-python = '>=3.10'
dependencies = [
'PySide6>=6.6,<6.7'
]
[project.urls]
homepage = 'https://app.easyscience.software'
source = 'https://github.com/EasyScience/EasyApp'
tracker = 'https://github.com/EasyScience/EasyApp/issues'
[tool.hatch.build.targets.wheel]
packages = ['src/EasyApp']