-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
81 lines (72 loc) · 2.07 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
73
74
75
76
77
78
79
80
81
[build-system]
requires = [
"setuptools>=64",
"setuptools_scm[toml]>=8",
]
build-backend = "setuptools.build_meta"
[project]
name = "gemviz"
description = "Visualize Bluesky data from tiled server."
authors = [
{ name="Ollivier Gassant" },
{ name="Fanny Rodolakis", email="[email protected]" },
{ name="Pete Jemian", email="[email protected]" },
]
maintainers = [
{ name="Fanny Rodolakis", email="[email protected]" },
{ name="Pete Jemian", email="[email protected]" },
]
dynamic = ["version"]
readme = "README.md"
requires-python = ">=3.9"
keywords = ["bluesky", "databroker", "tiled", "catalog"]
# https://packaging.python.org/en/latest/specifications/declaring-project-metadata/?highlight=license
license = {file = "gemviz/LICENSE"}
# 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 :: Mathematics",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Scientific/Engineering :: Visualization",
"Topic :: Scientific/Engineering",
"Topic :: Utilities",
]
# qt ==5
# pyqt ==5
dependencies = [
"matplotlib",
"pyRestTable",
"tiled",
]
[project.urls]
"Homepage" = "https://github.com/BCDA-APS/gemviz"
"Bug Tracker" = "https://github.com/BCDA-APS/gemviz/issues"
[project.scripts]
gemviz = "gemviz.app:main"
[tool.black]
line-length = 88
[tool.copyright]
copyright = "2023-2024, UChicago Argonne, LLC"
[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.pytest.ini_options]
addopts = [
"--import-mode=importlib",
]
[tool.setuptools_scm]