-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
59 lines (54 loc) · 1.5 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
59
[build-system]
build-backend = "flit_core.buildapi"
requires = ["flit_core"]
[project]
name = 'tscat_gui'
version = "0.4.0"
description = "Time-series catalogue - graphical user interface."
keywords = ["satellite", "plasma-physics", "nasa-data", "amda", "cdpp", "SciQLop"]
authors = [
{ name = "Patrick Boettcher", email = "[email protected]" }
]
maintainers = [
{ name = "Patrick Boettcher", email = "[email protected]" },
{ name = "Alexis Jeandet", email = "[email protected]" }
]
requires-python = ">=3.8"
license = { file = "LICENSE" }
readme = "README.rst"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
'PySide6',
'tscat==0.4.*',
]
[project.optional-dependencies]
test = [
'flake8',
'appdirs-stubs',
"pytest>=4.6.5",
'pytest',
'pytest-pep8',
'pytest-cov',
'pytest-timeout',
'ddt'
]
doc = [
'sphinx',
'sphinx_rtd_theme',
'sphinx-autodoc-typehints'
]
[project.urls]
homepage = "https://github.com/SciQLop/tscat_gui"
repository = "https://github.com/SciQLop/tscat_gui"
documentation = "https://github.com/SciQLop/tscat_gui"