forked from Open-MSS/MSS
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpixi.toml
More file actions
146 lines (130 loc) · 3.19 KB
/
Copy pathpixi.toml
File metadata and controls
146 lines (130 loc) · 3.19 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
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
[workspace]
name = "MSS"
channels = ["conda-forge"]
platforms = ["linux-64", "osx-64", "osx-arm64", "win-64"]
[tasks]
[pypi-dependencies]
open-mss = { path = ".", editable = true }
[dependencies]
basemap = ">=1.3.3"
cftime = ">=1.0.1"
chameleon = "*"
defusedxml = "*"
email_validator = "*"
execnet = "*"
fastkml = ">=1.1.0,<2"
flask = ">=2.3.2"
flask-cors = "*"
flask-httpauth = "*"
flask-login = "*"
flask-mail = "*"
flask-migrate = "*"
flask-socketio = ">=5.1.0"
flask-sqlalchemy = ">=3.0.0"
flask-wtf = "*"
git = "*"
gitpython = "*"
gpxpy = ">=1.4.2"
hdf4 = "*"
isodate = "*"
itsdangerous = "*"
keyring = "*"
libgfortran5 = ">=14"
libtiff = "*"
lxml = "*"
markdown = "*"
matplotlib = ">=3.5.3"
metpy = "*"
multidict = "*"
netcdf4 = "*"
numpy = ">=2.2.4"
owslib = ">=0.24"
argon2-cffi = ">=23.1.0"
pillow = "*"
pint = "*"
psycopg2 = "*"
pycountry = "*"
pyjwt = "*"
pymysql = ">=0.9.3"
pyqt = ">=5.15.0"
pysaml2 = "*"
python = "<3.12"
python-engineio = ">=4"
python-slugify = "*"
python-socketio = ">=5"
qt = ">=5.15.0"
requests = ">=2.31.0"
scipy = "*"
skyfield = ">=1.12"
skyfield-data = ">=7"
tk = "*"
unicodecsv = "*"
websocket-client = "*"
werkzeug = ">=2.2.3, <3.0.0"
xstatic = "<2.0.0"
xstatic-bootstrap = "*"
xstatic-jquery = "*"
humanfriendly = ">=10.0,<11"
[target.linux-64.dependencies]
dbus-python = "*"
libxmlsec1 = "*"
[target.osx-64.dependencies]
dbus-python = "*"
libxmlsec1 = "*"
[target.osx-arm64.dependencies]
dbus-python = "*"
libxmlsec1 = "*"
[feature.addons.dependencies]
geographiclib = "*"
geomag = "*"
geopy = "*"
[feature.dev.dependencies]
codespell = "*"
coveralls = "*"
dnspython = ">=2.0.0, <2.3.0"
flake8 = "*"
flake8-builtins = "*"
gsl = "==2.7.0"
import-linter = ">=2"
mock = "*"
py = "*"
pynco = "*"
pytest = "*"
pytest-cov = "*"
pytest-qt = "*"
pytest-randomly = "*"
pytest-xdist = "*"
[feature.dev.tasks]
lint = { cmd = "git ls-files -z '**.py' | xargs -0 flake8" }
lint-imports = "lint-imports"
codespell = { cmd = "git ls-files -z | xargs -0 codespell --check-filenames" }
test-fast = "env QT_QPA_PLATFORM=offscreen pytest -q -n logical tests/_test_plugins tests/_test_utils tests/test_meta.py"
test-plugins = "env QT_QPA_PLATFORM=offscreen pytest -q -n logical tests/_test_plugins"
test-utils = "env QT_QPA_PLATFORM=offscreen pytest -q -n logical tests/_test_utils"
test-msui = "env QT_QPA_PLATFORM=offscreen pytest -v -n logical tests/_test_msui"
test-mscolab = "env QT_QPA_PLATFORM=offscreen pytest -v -n logical tests/_test_mscolab"
test-mswms = "env QT_QPA_PLATFORM=offscreen pytest -v -n logical tests/_test_mswms"
test = "env QT_QPA_PLATFORM=offscreen pytest -v -n logical --durations=20 tests"
[feature.tutorials]
platforms = ["win-64", "linux-64", "osx-64"]
[feature.tutorials.dependencies]
mouseinfo = "*"
opencv = "*"
pyautogui = "*"
pyscreeze = "*"
python-mss = "*"
[feature.tutorials.target.linux-64.dependencies]
# Clipboard CLI so type_localized can paste layout-independently on X11
# (Wayland users additionally need wl-clipboard).
xclip = "*"
[feature.docs]
platforms = ["win-64", "linux-64", "osx-64"]
[feature.docs.dependencies]
sphinx = "*"
sphinx_rtd_theme = "*"
sphinxcontrib-video = ">=0.2.1"
[environments]
addons = ["addons"]
dev = ["dev", "docs"]
tutorials = ["tutorials"]
docs = ["docs"]