-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
58 lines (52 loc) · 1.81 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
[build-system]
requires = ['setuptools>=45', 'setuptools_scm[toml]>=6.2']
build-backend = 'setuptools.build_meta'
[project]
name = 'psk_viewer'
authors = [
{name = 'StSav012', email = 'stsav012@gmail.com'},
]
description = 'IPM RAS PSK and FS spectrometer files viewer'
readme = 'README.md'
license = {text = 'LGPL-3.0-only'}
requires-python = '>=3.8'
classifiers = [
'Development Status :: 4 - Beta',
'Environment :: Win32 (MS Windows)',
'Environment :: X11 Applications :: Qt',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)',
'Operating System :: Microsoft :: Windows :: Windows 7',
'Operating System :: Microsoft :: Windows :: Windows 8',
'Operating System :: Microsoft :: Windows :: Windows 10',
'Operating System :: Microsoft :: Windows :: Windows 11',
'Operating System :: POSIX',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Astronomy',
'Topic :: Scientific/Engineering :: Atmospheric Science',
'Topic :: Scientific/Engineering :: Chemistry',
'Topic :: Scientific/Engineering :: Physics',
'Typing :: Typed',
]
dynamic = [
'version',
'dependencies',
]
[project.gui-scripts]
psk_viewer = 'psk_viewer:main'
[project.urls]
'Source Code' = 'https://github.com/StSav012/psk_viewer'
'Bug Tracker' = 'https://github.com/StSav012/psk_viewer/issues'
[tool.setuptools_scm]
local_scheme = 'no-local-version'
write_to = 'src/psk_viewer/_version.py'
[tool.setuptools.dynamic]
version = {attr = 'psk_viewer._version.__version__'}
[tool.ruff.lint]
fixable = ["ALL"]
unfixable = []
select = ["NPY201"]