-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
146 lines (136 loc) · 3.52 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
[project]
name = "pyromonitor"
version = "0.1.0"
description = "A web application that can monitor your PyroLab nameserver and provide an easy-to-access status board."
readme = "README.md"
requires-python = ">=3.7"
license = {file = "LICENSE"}
keywords = [
"PyroLab",
"Pyro5",
"Pyro",
"lab",
"instrument",
"remote",
"resources",
"framework",
"laboratory",
"instrumentation",
"hardware",
"science",
"remote",
"network",
"integration",
]
# This should be your name or the name of the organization who originally
# authored the project, and a valid email address corresponding to the name
# listed.
authors = [
{name = "Sequoia Ploeg", email = "[email protected]" },
{name = "BYU CamachoLab", email = "[email protected]"}
]
# This should be your name or the names of the organization who currently
# maintains the project, and a valid email address corresponding to the name
# listed.
maintainers = [
{name = "Sequoia Ploeg", email = "[email protected]" },
{name = "BYU CamachoLab", email = "[email protected]"}
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Topic :: Scientific/Engineering",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3 :: Only",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Operating System :: OS Independent",
]
dependencies = [
"pyrolab",
"deprecation",
"typer",
"colorama",
"tabulate",
"requests",
"packaging>=23.0",
"flask",
"omegaconf",
"waitress",
]
# List additional groups of dependencies here (e.g. development
# dependencies). Users will be able to install these using the "extras"
# syntax, for example:
#
# $ pip install sampleproject[dev]
[project.optional-dependencies]
test = ["pytest", "coverage"]
dev = [
"notebook",
"pytest",
"mypy",
"coverage",
"flake8 >= 4.0.1",
"isort >= 5.10.1",
"black >= 22.1.0",
"autopep8 >= 1.6.0",
"twine >= 4.0.0",
"build >= 0.10.0",
"pre-commit",
"bump2version ~= 1.0.1",
]
docs = [
"sphinx-book-theme ~= 0.3.3",
"jupyter-book ~= 0.13.2",
"sphinx-design ~= 0.1.0",
"matplotlib",
"numpy",
"numpydoc",
"sphinx-tippy",
# sphinx==5.3.0
# linkify-it-py==2.0.0
# sphinxcontrib-bibtex==2.5.0
]
[project.urls]
"Source" = "https://github.com/BYUCamachoLab/pyromonitor"
"Bug Reports" = "https://github.com/BYUCamachoLab/pyromonitor/issues"
"Research Group" = "https://camacholab.byu.edu/"
[project.scripts]
pyromonitor = "pyromonitor.cli:app"
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "--maxfail=2 -rf"
testpaths = ["tests"]
console_output_style = "progress"
filterwarnings = ["ignore::UserWarning", "ignore::DeprecationWarning"]
[build-system]
requires = ["setuptools>=62.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.isort]
profile = "black"
extend_skip_glob = "api.py"
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
line_length = 88
known_third_party = [
"Pyro5",
"matplotlib",
"numpy",
"pytest",
"scipy",
"setuptools",
"typer",
"tabulate",
]
known_first_party = ["pyromonitor"]