-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
73 lines (63 loc) · 1.94 KB
/
pyproject.toml
File metadata and controls
73 lines (63 loc) · 1.94 KB
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
65
66
67
68
69
70
71
72
73
[build-system]
requires = ["setuptools>=82.0.1", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "flits"
dynamic = ["version", "dependencies"]
description = "Browser-based FRB burst analysis software (SIGPROC, PSRFITS, CHIME/FRB HDF5)"
license = "GPL-3.0-only"
license-files = ["LICENSE"]
readme = "README.md"
requires-python = ">=3.11"
authors = [
{ name = "Dirk Kuiper" },
]
keywords = ["astronomy", "fast radio bursts", "FRB", "radio astronomy", "filterbank", "SIGPROC", "PSRFITS", "HDF5", "CHIME"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Astronomy",
]
[project.scripts]
flits = "flits.web.app:main"
[project.entry-points."flits.readers"]
sigproc = "flits.io.your_reader:YourFilterbankReader"
psrfits = "flits.io.your_reader:YourFilterbankReader"
chime_hdf5 = "flits.io.chime_hdf5_reader:ChimeHdf5Reader"
[project.optional-dependencies]
dev = [
"build>=1.4.3",
"pytest>=9.0.3",
"twine>=6.2.0",
]
docs = [
"mkdocs-material>=9.7.6",
]
[project.urls]
Homepage = "https://github.com/DirkKuiper/flits"
Documentation = "https://github.com/DirkKuiper/flits#readme"
Issues = "https://github.com/DirkKuiper/flits/issues"
Releases = "https://github.com/DirkKuiper/flits/releases"
Repository = "https://github.com/DirkKuiper/flits"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
include = ["flits*"]
[tool.setuptools.dynamic]
version = { attr = "flits.__version__" }
dependencies = { file = ["requirements.txt"] }
[tool.setuptools.package-data]
flits = [
"web_static/*.html",
"web_static/*.css",
"web_static/*.js",
"web_static/vendor/*.js",
]
[tool.pytest.ini_options]
addopts = "-ra"
testpaths = ["tests"]