-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
64 lines (59 loc) · 1.63 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
60
61
62
63
64
[build-system]
build-backend = "flit_core.buildapi"
requires = ["flit_core"]
[project]
name = 'tscat'
version = "0.4.1"
description = "A library which stores, loads and filters time-series-events and catalogues."
keywords = ["satellite", "plasma-physics", "nasa-data", "amda", "cdpp", "CDF"]
authors = [
{ name = "Patrick Boettcher", email = "p@yai.se" }
]
maintainers = [
{ name = "Patrick Boettcher", email = "p@yai.se" },
{ name = "Alexis Jeandet", email = "alexis.jeandet@member.fsf.org" }
]
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 = [
"alembic",
"typing_extensions>=3.7",
'sqlalchemy[mypy]<2,>=1.4.0',
"appdirs>=1.4.4 ",
"SQLAlchemy_Utils>=0.37.8",
'orjson',
'astropy'
]
[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"
repository = "https://github.com/SciQLop/tscat"
documentation = "https://github.com/SciQLop/tscat"