-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
83 lines (77 loc) · 2.05 KB
/
pyproject.toml
File metadata and controls
83 lines (77 loc) · 2.05 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
74
75
76
77
78
79
80
81
82
83
[build-system]
requires = ["setuptools>=64", "setuptools-scm>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "km3db"
authors = [
{name = "Tamas Gal", email ="tamas.gal@fau.de"}
]
maintainers = [
{name = "Tamas Gal", email ="tamas.gal@fau.de"}
]
dependencies = [
"docopt",
"pytz",
"requests",
"setuptools_scm",
"numpy"
]
requires-python = ">=3.8"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"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",
"Topic :: Scientific/Engineering"
]
description = "KM3NeT Database Library"
readme = {file = "README.rst", content-type = "text/x-rst"}
dynamic = ["version"]
[project.optional-dependencies]
dev = [
"black",
"km3net_testdata>=0.2.7",
"matplotlib",
"pandas",
"memory_profiler",
"mock",
"numpydoc",
"pytest",
"pytest-cov",
"pytest-watch",
"sphinx",
"sphinx-autoapi",
"sphinx-gallery>=0.1.12",
"sphinx_rtd_theme",
"sphinxcontrib-versioning",
"wheel"
]
extras = [
"pandas",
"h5py"
]
[project.scripts]
km3db = "km3db.cli.km3db:main"
km3dbcookie = "km3db.cli.km3dbcookie:main"
streamds = "km3db.cli.streamds:main"
detx = "km3db.cli.detx:main"
runtable = "km3db.cli.runtable:main"
runinfo = "km3db.cli.runinfo:main"
wtd = "km3db.cli.wtd:main"
[project.urls]
Homepage = "https://git.km3net.de/km3py/km3db"
Documentation = "https://km3py.pages.km3net.de/km3db/"
Repository = "https://git.km3net.de/km3py/km3db.git"
Issues = "https://git.km3net.de/km3py/km3db/-/issues"
Changelog = "https://km3py.pages.km3net.de/km3db/changelog.html"
[tool.setuptools_scm]
write_to = "src/km3db/version.py"