-
Notifications
You must be signed in to change notification settings - Fork 8
/
pyproject.toml
72 lines (65 loc) · 1.89 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
65
66
67
68
69
70
71
72
[build-system]
build-backend = "setuptools.build_meta"
requires = [
"setuptools_scm[toml]>=8.0",
"setuptools>=64",
]
[project]
name = "punx"
dynamic = ["version"]
description = "Python Utilities for NeXus HDF5 files."
authors = [
{ name="Pete Jemian", email="[email protected]" },
]
readme = "README.md"
requires-python = ">=3.8"
keywords = ["NeXus", "HDF5"]
# https://packaging.python.org/en/latest/specifications/declaring-project-metadata/?highlight=license
license = {file = "punx/LICENSE.txt"}
dependencies = [
"h5py",
"hdf5plugin",
"lxml",
"numpy",
"PyQt5",
"pyRestTable",
"requests",
]
# https://pypi.org/classifiers/
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Science/Research",
"License :: Freely Distributable",
"License :: Public Domain",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python",
"Topic :: Scientific/Engineering :: Astronomy",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Scientific/Engineering :: Chemistry",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Scientific/Engineering :: Interface Engine/Protocol Translator",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Scientific/Engineering :: Visualization",
"Topic :: Scientific/Engineering",
"Topic :: Utilities",
]
[tool.setuptools_scm]
[project.urls]
"Homepage" = "https://prjemian.github.io/punx/"
"Source" = "https://github.com/BCDA-APS/punx"
"Bug Tracker" = "https://github.com/BCDA-APS/punx/issues"
[project.scripts]
punx = "punx.main:main"
[tool.flake8]
max-line-length = 88
extend-ignore = ["E501"]
[tool.isort]
force_single_line = true
# multi_line_output = 1
line_length = 88
include_trailing_comma = true
[tool.black]
line_length = 88