pythoncharmers-meta 0.1.1__tar.gz → 0.2.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pythoncharmers_meta-0.2.1/.gitignore +162 -0
- pythoncharmers_meta-0.2.1/LICENSE +28 -0
- pythoncharmers_meta-0.2.1/PKG-INFO +151 -0
- {pythoncharmers_meta-0.1.1 → pythoncharmers_meta-0.2.1}/README.md +28 -3
- pythoncharmers_meta-0.2.1/pyproject.toml +117 -0
- pythoncharmers_meta-0.2.1/uv.lock +5883 -0
- pythoncharmers_meta-0.1.1/.gitignore +0 -18
- pythoncharmers_meta-0.1.1/PKG-INFO +0 -60
- pythoncharmers_meta-0.1.1/pyproject.toml +0 -45
- pythoncharmers_meta-0.1.1/uv.lock +0 -3396
- {pythoncharmers_meta-0.1.1 → pythoncharmers_meta-0.2.1}/src/pythoncharmers_meta/__init__.py +0 -0
|
@@ -0,0 +1,162 @@
|
|
|
1
|
+
# Byte-compiled / optimized / DLL files
|
|
2
|
+
__pycache__/
|
|
3
|
+
*.py[cod]
|
|
4
|
+
*$py.class
|
|
5
|
+
|
|
6
|
+
# C extensions
|
|
7
|
+
*.so
|
|
8
|
+
|
|
9
|
+
# Distribution / packaging
|
|
10
|
+
.Python
|
|
11
|
+
build/
|
|
12
|
+
develop-eggs/
|
|
13
|
+
dist/
|
|
14
|
+
downloads/
|
|
15
|
+
eggs/
|
|
16
|
+
.eggs/
|
|
17
|
+
lib/
|
|
18
|
+
lib64/
|
|
19
|
+
parts/
|
|
20
|
+
sdist/
|
|
21
|
+
var/
|
|
22
|
+
wheels/
|
|
23
|
+
share/python-wheels/
|
|
24
|
+
*.egg-info/
|
|
25
|
+
.installed.cfg
|
|
26
|
+
*.egg
|
|
27
|
+
MANIFEST
|
|
28
|
+
|
|
29
|
+
# PyInstaller
|
|
30
|
+
# Usually these files are written by a python script from a template
|
|
31
|
+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
|
|
32
|
+
*.manifest
|
|
33
|
+
*.spec
|
|
34
|
+
|
|
35
|
+
# Installer logs
|
|
36
|
+
pip-log.txt
|
|
37
|
+
pip-delete-this-directory.txt
|
|
38
|
+
|
|
39
|
+
# Unit test / coverage reports
|
|
40
|
+
htmlcov/
|
|
41
|
+
.tox/
|
|
42
|
+
.nox/
|
|
43
|
+
.coverage
|
|
44
|
+
.coverage.*
|
|
45
|
+
.cache
|
|
46
|
+
nosetests.xml
|
|
47
|
+
coverage.xml
|
|
48
|
+
*.cover
|
|
49
|
+
*.py,cover
|
|
50
|
+
.hypothesis/
|
|
51
|
+
.pytest_cache/
|
|
52
|
+
cover/
|
|
53
|
+
|
|
54
|
+
# Translations
|
|
55
|
+
*.mo
|
|
56
|
+
*.pot
|
|
57
|
+
|
|
58
|
+
# Django stuff:
|
|
59
|
+
*.log
|
|
60
|
+
local_settings.py
|
|
61
|
+
db.sqlite3
|
|
62
|
+
db.sqlite3-journal
|
|
63
|
+
|
|
64
|
+
# Flask stuff:
|
|
65
|
+
instance/
|
|
66
|
+
.webassets-cache
|
|
67
|
+
|
|
68
|
+
# Scrapy stuff:
|
|
69
|
+
.scrapy
|
|
70
|
+
|
|
71
|
+
# Sphinx documentation
|
|
72
|
+
docs/_build/
|
|
73
|
+
|
|
74
|
+
# PyBuilder
|
|
75
|
+
.pybuilder/
|
|
76
|
+
target/
|
|
77
|
+
|
|
78
|
+
# Jupyter Notebook
|
|
79
|
+
.ipynb_checkpoints
|
|
80
|
+
|
|
81
|
+
# IPython
|
|
82
|
+
profile_default/
|
|
83
|
+
ipython_config.py
|
|
84
|
+
|
|
85
|
+
# pyenv
|
|
86
|
+
# For a library or package, you might want to ignore these files since the code is
|
|
87
|
+
# intended to run in multiple environments; otherwise, check them in:
|
|
88
|
+
# .python-version
|
|
89
|
+
|
|
90
|
+
# pipenv
|
|
91
|
+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
|
|
92
|
+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
|
|
93
|
+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
|
|
94
|
+
# install all needed dependencies.
|
|
95
|
+
#Pipfile.lock
|
|
96
|
+
|
|
97
|
+
# poetry
|
|
98
|
+
# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
|
|
99
|
+
# This is especially recommended for binary packages to ensure reproducibility, and is more
|
|
100
|
+
# commonly ignored for libraries.
|
|
101
|
+
# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
|
|
102
|
+
#poetry.lock
|
|
103
|
+
|
|
104
|
+
# pdm
|
|
105
|
+
# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
|
|
106
|
+
#pdm.lock
|
|
107
|
+
# pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
|
|
108
|
+
# in version control.
|
|
109
|
+
# https://pdm.fming.dev/latest/usage/project/#working-with-version-control
|
|
110
|
+
.pdm.toml
|
|
111
|
+
.pdm-python
|
|
112
|
+
.pdm-build/
|
|
113
|
+
|
|
114
|
+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
|
|
115
|
+
__pypackages__/
|
|
116
|
+
|
|
117
|
+
# Celery stuff
|
|
118
|
+
celerybeat-schedule
|
|
119
|
+
celerybeat.pid
|
|
120
|
+
|
|
121
|
+
# SageMath parsed files
|
|
122
|
+
*.sage.py
|
|
123
|
+
|
|
124
|
+
# Environments
|
|
125
|
+
.env
|
|
126
|
+
.venv
|
|
127
|
+
env/
|
|
128
|
+
venv/
|
|
129
|
+
ENV/
|
|
130
|
+
env.bak/
|
|
131
|
+
venv.bak/
|
|
132
|
+
|
|
133
|
+
# Spyder project settings
|
|
134
|
+
.spyderproject
|
|
135
|
+
.spyproject
|
|
136
|
+
|
|
137
|
+
# Rope project settings
|
|
138
|
+
.ropeproject
|
|
139
|
+
|
|
140
|
+
# mkdocs documentation
|
|
141
|
+
/site
|
|
142
|
+
|
|
143
|
+
# mypy
|
|
144
|
+
.mypy_cache/
|
|
145
|
+
.dmypy.json
|
|
146
|
+
dmypy.json
|
|
147
|
+
|
|
148
|
+
# Pyre type checker
|
|
149
|
+
.pyre/
|
|
150
|
+
|
|
151
|
+
# pytype static type analyzer
|
|
152
|
+
.pytype/
|
|
153
|
+
|
|
154
|
+
# Cython debug symbols
|
|
155
|
+
cython_debug/
|
|
156
|
+
|
|
157
|
+
# PyCharm
|
|
158
|
+
# JetBrains specific template is maintained in a separate JetBrains.gitignore that can
|
|
159
|
+
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
|
|
160
|
+
# and can be added to the global gitignore or merged into this file. For a more nuclear
|
|
161
|
+
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
|
|
162
|
+
#.idea/
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
BSD 3-Clause License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2024, Python Charmers
|
|
4
|
+
|
|
5
|
+
Redistribution and use in source and binary forms, with or without
|
|
6
|
+
modification, are permitted provided that the following conditions are met:
|
|
7
|
+
|
|
8
|
+
1. Redistributions of source code must retain the above copyright notice, this
|
|
9
|
+
list of conditions and the following disclaimer.
|
|
10
|
+
|
|
11
|
+
2. Redistributions in binary form must reproduce the above copyright notice,
|
|
12
|
+
this list of conditions and the following disclaimer in the documentation
|
|
13
|
+
and/or other materials provided with the distribution.
|
|
14
|
+
|
|
15
|
+
3. Neither the name of the copyright holder nor the names of its
|
|
16
|
+
contributors may be used to endorse or promote products derived from
|
|
17
|
+
this software without specific prior written permission.
|
|
18
|
+
|
|
19
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
20
|
+
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
21
|
+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
22
|
+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
|
23
|
+
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
24
|
+
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
25
|
+
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
26
|
+
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
27
|
+
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
28
|
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
@@ -0,0 +1,151 @@
|
|
|
1
|
+
Metadata-Version: 2.3
|
|
2
|
+
Name: pythoncharmers-meta
|
|
3
|
+
Version: 0.2.1
|
|
4
|
+
Summary: Meta package with dependencies for Python Charmers training courses
|
|
5
|
+
License-File: LICENSE
|
|
6
|
+
Requires-Python: >=3.10
|
|
7
|
+
Requires-Dist: black>=24.8.0
|
|
8
|
+
Requires-Dist: h5py>=3.11.0
|
|
9
|
+
Requires-Dist: hvplot>=0.10.0
|
|
10
|
+
Requires-Dist: ipython>=8.12.3
|
|
11
|
+
Requires-Dist: isort>=5.13.2
|
|
12
|
+
Requires-Dist: jupyter>=1.0.0
|
|
13
|
+
Requires-Dist: jupyterhub<5.0
|
|
14
|
+
Requires-Dist: jupyterlab-code-formatter>=3.0.2
|
|
15
|
+
Requires-Dist: jupyterlab-git>=0.50.1
|
|
16
|
+
Requires-Dist: jupyterlab>=4.2.5
|
|
17
|
+
Requires-Dist: line-profiler>=4.1.3
|
|
18
|
+
Requires-Dist: loguru>=0.7.2
|
|
19
|
+
Requires-Dist: logzero>=1.7.0
|
|
20
|
+
Requires-Dist: matplotlib>=3.7.5
|
|
21
|
+
Requires-Dist: memory-profiler>=0.61.0
|
|
22
|
+
Requires-Dist: mypy>=1.11.2
|
|
23
|
+
Requires-Dist: numba>=0.60.0
|
|
24
|
+
Requires-Dist: numexpr>=2.10.1
|
|
25
|
+
Requires-Dist: numpy>=2.0.2
|
|
26
|
+
Requires-Dist: openpyxl>=3.1.5
|
|
27
|
+
Requires-Dist: pandas[aws,compression,computation,consortium-standard,excel,feather,fss,hdf5,html,mysql,output-formatting,parquet,plot,spss,sql-other,xml]>=2.2.2
|
|
28
|
+
Requires-Dist: plotly>=5.23.0
|
|
29
|
+
Requires-Dist: polars>=1.5.0
|
|
30
|
+
Requires-Dist: psutil>=6.0.0
|
|
31
|
+
Requires-Dist: requests>=2.32.3
|
|
32
|
+
Requires-Dist: schedule>=1.2.2
|
|
33
|
+
Requires-Dist: scipy>=1.14.1
|
|
34
|
+
Requires-Dist: sqlalchemy>=2.0.32
|
|
35
|
+
Requires-Dist: statsmodels>=0.14.2
|
|
36
|
+
Requires-Dist: streamlit>=1.38.0
|
|
37
|
+
Requires-Dist: toolz>=0.12.1
|
|
38
|
+
Provides-Extra: gis
|
|
39
|
+
Requires-Dist: cartopy>=0.23.0; extra == 'gis'
|
|
40
|
+
Requires-Dist: dask-image>=2024.5.3; extra == 'gis'
|
|
41
|
+
Requires-Dist: datashader>=0.16.3; extra == 'gis'
|
|
42
|
+
Requires-Dist: fiona>=1.10.0; extra == 'gis'
|
|
43
|
+
Requires-Dist: folium>=0.17.0; extra == 'gis'
|
|
44
|
+
Requires-Dist: geopandas>=1.0.1; extra == 'gis'
|
|
45
|
+
Requires-Dist: graphviz>=0.20.3; extra == 'gis'
|
|
46
|
+
Requires-Dist: netcdf4>=1.7.1.post2; extra == 'gis'
|
|
47
|
+
Requires-Dist: networkx>=3.3; extra == 'gis'
|
|
48
|
+
Requires-Dist: pyproj>=3.6.1; extra == 'gis'
|
|
49
|
+
Requires-Dist: pysal>=24.7; extra == 'gis'
|
|
50
|
+
Requires-Dist: rasterio>=1.3.11; extra == 'gis'
|
|
51
|
+
Requires-Dist: rioxarray>=0.17.0; extra == 'gis'
|
|
52
|
+
Requires-Dist: scikit-image>=0.24.0; extra == 'gis'
|
|
53
|
+
Requires-Dist: seaborn>=0.13.2; extra == 'gis'
|
|
54
|
+
Requires-Dist: shapely>=2.0.6; extra == 'gis'
|
|
55
|
+
Requires-Dist: xarray>=2024.7.0; extra == 'gis'
|
|
56
|
+
Provides-Extra: ml
|
|
57
|
+
Requires-Dist: eli5>=0.13.0; extra == 'ml'
|
|
58
|
+
Requires-Dist: joblib>=1.4.2; extra == 'ml'
|
|
59
|
+
Requires-Dist: pyod>=2.0.1; extra == 'ml'
|
|
60
|
+
Requires-Dist: scikit-learn>=1.5.1; extra == 'ml'
|
|
61
|
+
Requires-Dist: skorch>=1.0.0; extra == 'ml'
|
|
62
|
+
Requires-Dist: textdistance>=4.6.3; extra == 'ml'
|
|
63
|
+
Requires-Dist: xgboost>=2.1.1; extra == 'ml'
|
|
64
|
+
Requires-Dist: yellowbrick>=1.5; extra == 'ml'
|
|
65
|
+
Provides-Extra: net
|
|
66
|
+
Requires-Dist: cryptography>=43.0.0; extra == 'net'
|
|
67
|
+
Requires-Dist: networkx>=3.3; extra == 'net'
|
|
68
|
+
Requires-Dist: pandas>=2.2.2; extra == 'net'
|
|
69
|
+
Requires-Dist: polars>=1.5.0; extra == 'net'
|
|
70
|
+
Requires-Dist: psutil>=6.0.0; extra == 'net'
|
|
71
|
+
Requires-Dist: pyshark>=0.6; extra == 'net'
|
|
72
|
+
Requires-Dist: requests>=2.32.3; extra == 'net'
|
|
73
|
+
Requires-Dist: schedule>=1.2.2; extra == 'net'
|
|
74
|
+
Requires-Dist: textfsm>=1.1.3; extra == 'net'
|
|
75
|
+
Requires-Dist: zmq>=0.0.0; extra == 'net'
|
|
76
|
+
Provides-Extra: scieng
|
|
77
|
+
Requires-Dist: altair>=5.4.1; extra == 'scieng'
|
|
78
|
+
Requires-Dist: bokeh>=3.4.3; extra == 'scieng'
|
|
79
|
+
Requires-Dist: dask-image>=2024.5.3; extra == 'scieng'
|
|
80
|
+
Requires-Dist: dask>=2024.8.2; extra == 'scieng'
|
|
81
|
+
Requires-Dist: graphviz>=0.20.3; extra == 'scieng'
|
|
82
|
+
Requires-Dist: holoviews>=1.19.1; extra == 'scieng'
|
|
83
|
+
Requires-Dist: hvplot>=0.10.0; extra == 'scieng'
|
|
84
|
+
Requires-Dist: matplotlib>=3.9.2; extra == 'scieng'
|
|
85
|
+
Requires-Dist: networkx>=3.3; extra == 'scieng'
|
|
86
|
+
Requires-Dist: numba>=0.60.0; extra == 'scieng'
|
|
87
|
+
Requires-Dist: numpy>=2.0.2; extra == 'scieng'
|
|
88
|
+
Requires-Dist: pandas>=2.2.2; extra == 'scieng'
|
|
89
|
+
Requires-Dist: pint>=0.24.3; extra == 'scieng'
|
|
90
|
+
Requires-Dist: plotly>=5.23.0; extra == 'scieng'
|
|
91
|
+
Requires-Dist: pyod>=2.0.1; extra == 'scieng'
|
|
92
|
+
Requires-Dist: scikit-image>=0.24.0; extra == 'scieng'
|
|
93
|
+
Requires-Dist: scipy>=1.14.1; extra == 'scieng'
|
|
94
|
+
Requires-Dist: seaborn>=0.13.2; extra == 'scieng'
|
|
95
|
+
Requires-Dist: statsmodels>=0.14.2; extra == 'scieng'
|
|
96
|
+
Requires-Dist: streamlit>=1.38.0; extra == 'scieng'
|
|
97
|
+
Requires-Dist: tables>=3.10.1; extra == 'scieng'
|
|
98
|
+
Provides-Extra: web
|
|
99
|
+
Requires-Dist: alembic>=1.13.2; extra == 'web'
|
|
100
|
+
Requires-Dist: cryptography>=43.0.0; extra == 'web'
|
|
101
|
+
Requires-Dist: django>=5.1.1; extra == 'web'
|
|
102
|
+
Requires-Dist: fastapi>=0.112.3; extra == 'web'
|
|
103
|
+
Requires-Dist: flask>=3.0.3; extra == 'web'
|
|
104
|
+
Requires-Dist: httpx>=0.27.2; extra == 'web'
|
|
105
|
+
Description-Content-Type: text/markdown
|
|
106
|
+
|
|
107
|
+
# Python Charmers meta-package
|
|
108
|
+
|
|
109
|
+
This is a meta-package for [Python Charmers](https://pythoncharmers.com)
|
|
110
|
+
training participants. This depends on many packages used in Python Charmers
|
|
111
|
+
training courses.
|
|
112
|
+
|
|
113
|
+
This package is intended to be used from a Python Charmers Hub in the cloud
|
|
114
|
+
like https://cpuhub.pythoncharmers.com.
|
|
115
|
+
|
|
116
|
+
## Installation
|
|
117
|
+
|
|
118
|
+
Install it like this:
|
|
119
|
+
|
|
120
|
+
```
|
|
121
|
+
pip install pythoncharmers-meta
|
|
122
|
+
```
|
|
123
|
+
|
|
124
|
+
or, if you have [uv](https://docs.astral.sh/uv/), this will be much faster:
|
|
125
|
+
|
|
126
|
+
```
|
|
127
|
+
uv pip install pythoncharmers-meta
|
|
128
|
+
```
|
|
129
|
+
|
|
130
|
+
## Extras
|
|
131
|
+
|
|
132
|
+
These extras are available:
|
|
133
|
+
|
|
134
|
+
- gis
|
|
135
|
+
- ml
|
|
136
|
+
- scieng
|
|
137
|
+
- net
|
|
138
|
+
- web
|
|
139
|
+
|
|
140
|
+
You can add them like this:
|
|
141
|
+
|
|
142
|
+
```
|
|
143
|
+
uv pip install "pythoncharmers-meta[gis, ml]"
|
|
144
|
+
```
|
|
145
|
+
|
|
146
|
+
## Cutting a new release
|
|
147
|
+
|
|
148
|
+
```
|
|
149
|
+
uv build
|
|
150
|
+
uvx twine upload dist/*
|
|
151
|
+
```
|
|
@@ -4,17 +4,42 @@ This is a meta-package for [Python Charmers](https://pythoncharmers.com)
|
|
|
4
4
|
training participants. This depends on many packages used in Python Charmers
|
|
5
5
|
training courses.
|
|
6
6
|
|
|
7
|
+
This package is intended to be used from a Python Charmers Hub in the cloud
|
|
8
|
+
like https://cpuhub.pythoncharmers.com.
|
|
9
|
+
|
|
10
|
+
## Installation
|
|
11
|
+
|
|
7
12
|
Install it like this:
|
|
8
13
|
|
|
9
14
|
```
|
|
10
15
|
pip install pythoncharmers-meta
|
|
11
16
|
```
|
|
12
17
|
|
|
13
|
-
or:
|
|
18
|
+
or, if you have [uv](https://docs.astral.sh/uv/), this will be much faster:
|
|
14
19
|
|
|
15
20
|
```
|
|
16
21
|
uv pip install pythoncharmers-meta
|
|
17
22
|
```
|
|
18
23
|
|
|
19
|
-
|
|
20
|
-
|
|
24
|
+
## Extras
|
|
25
|
+
|
|
26
|
+
These extras are available:
|
|
27
|
+
|
|
28
|
+
- gis
|
|
29
|
+
- ml
|
|
30
|
+
- scieng
|
|
31
|
+
- net
|
|
32
|
+
- web
|
|
33
|
+
|
|
34
|
+
You can add them like this:
|
|
35
|
+
|
|
36
|
+
```
|
|
37
|
+
uv pip install "pythoncharmers-meta[gis, ml]"
|
|
38
|
+
```
|
|
39
|
+
|
|
40
|
+
## Cutting a new release
|
|
41
|
+
|
|
42
|
+
```
|
|
43
|
+
uv build
|
|
44
|
+
uvx twine upload dist/*
|
|
45
|
+
```
|
|
@@ -0,0 +1,117 @@
|
|
|
1
|
+
[project]
|
|
2
|
+
name = "pythoncharmers-meta"
|
|
3
|
+
version = "0.2.1"
|
|
4
|
+
description = "Meta package with dependencies for Python Charmers training courses"
|
|
5
|
+
readme = "README.md"
|
|
6
|
+
requires-python = ">=3.10"
|
|
7
|
+
dependencies = [
|
|
8
|
+
"ipython>=8.12.3",
|
|
9
|
+
"jupyter>=1.0.0",
|
|
10
|
+
"polars>=1.5.0",
|
|
11
|
+
"matplotlib>=3.7.5",
|
|
12
|
+
"plotly>=5.23.0",
|
|
13
|
+
"jupyterlab>=4.2.5",
|
|
14
|
+
"jupyterlab-git>=0.50.1",
|
|
15
|
+
"pandas[aws,compression,computation,consortium-standard,excel,feather,fss,hdf5,html,mysql,output-formatting,parquet,plot,spss,sql-other,xml]>=2.2.2",
|
|
16
|
+
"numba>=0.60.0",
|
|
17
|
+
"numexpr>=2.10.1",
|
|
18
|
+
"h5py>=3.11.0",
|
|
19
|
+
"mypy>=1.11.2",
|
|
20
|
+
"statsmodels>=0.14.2",
|
|
21
|
+
"loguru>=0.7.2",
|
|
22
|
+
"psutil>=6.0.0",
|
|
23
|
+
"memory-profiler>=0.61.0",
|
|
24
|
+
"line-profiler>=4.1.3",
|
|
25
|
+
"streamlit>=1.38.0",
|
|
26
|
+
"schedule>=1.2.2",
|
|
27
|
+
"requests>=2.32.3",
|
|
28
|
+
"hvplot>=0.10.0",
|
|
29
|
+
"numpy>=2.0.2",
|
|
30
|
+
"scipy>=1.14.1",
|
|
31
|
+
"jupyterlab-code-formatter>=3.0.2",
|
|
32
|
+
"black>=24.8.0",
|
|
33
|
+
"isort>=5.13.2",
|
|
34
|
+
"toolz>=0.12.1",
|
|
35
|
+
"logzero>=1.7.0",
|
|
36
|
+
"jupyterhub<5.0",
|
|
37
|
+
"sqlalchemy>=2.0.32",
|
|
38
|
+
"openpyxl>=3.1.5",
|
|
39
|
+
]
|
|
40
|
+
|
|
41
|
+
[project.optional-dependencies]
|
|
42
|
+
gis = [
|
|
43
|
+
"rasterio>=1.3.11",
|
|
44
|
+
"xarray>=2024.7.0",
|
|
45
|
+
"geopandas>=1.0.1",
|
|
46
|
+
"folium>=0.17.0",
|
|
47
|
+
"shapely>=2.0.6",
|
|
48
|
+
"datashader>=0.16.3",
|
|
49
|
+
"fiona>=1.10.0",
|
|
50
|
+
"cartopy>=0.23.0",
|
|
51
|
+
"pyproj>=3.6.1",
|
|
52
|
+
"pysal>=24.7",
|
|
53
|
+
"rioxarray>=0.17.0",
|
|
54
|
+
"scikit-image>=0.24.0",
|
|
55
|
+
"seaborn>=0.13.2",
|
|
56
|
+
"netcdf4>=1.7.1.post2",
|
|
57
|
+
"networkx>=3.3",
|
|
58
|
+
"dask-image>=2024.5.3",
|
|
59
|
+
"graphviz>=0.20.3",
|
|
60
|
+
]
|
|
61
|
+
ml = [
|
|
62
|
+
"scikit-learn>=1.5.1",
|
|
63
|
+
"yellowbrick>=1.5",
|
|
64
|
+
"xgboost>=2.1.1",
|
|
65
|
+
"eli5>=0.13.0",
|
|
66
|
+
"pyod>=2.0.1",
|
|
67
|
+
"textdistance>=4.6.3",
|
|
68
|
+
"skorch>=1.0.0",
|
|
69
|
+
"joblib>=1.4.2",
|
|
70
|
+
]
|
|
71
|
+
web = [
|
|
72
|
+
"flask>=3.0.3",
|
|
73
|
+
"httpx>=0.27.2",
|
|
74
|
+
"fastapi>=0.112.3",
|
|
75
|
+
"alembic>=1.13.2",
|
|
76
|
+
"django>=5.1.1",
|
|
77
|
+
"cryptography>=43.0.0",
|
|
78
|
+
]
|
|
79
|
+
scieng = [
|
|
80
|
+
"numpy>=2.0.2",
|
|
81
|
+
"scipy>=1.14.1",
|
|
82
|
+
"statsmodels>=0.14.2",
|
|
83
|
+
"pint>=0.24.3",
|
|
84
|
+
"scikit-image>=0.24.0",
|
|
85
|
+
"dask>=2024.8.2",
|
|
86
|
+
"matplotlib>=3.9.2",
|
|
87
|
+
"plotly>=5.23.0",
|
|
88
|
+
"hvplot>=0.10.0",
|
|
89
|
+
"networkx>=3.3",
|
|
90
|
+
"pandas>=2.2.2",
|
|
91
|
+
"numba>=0.60.0",
|
|
92
|
+
"dask-image>=2024.5.3",
|
|
93
|
+
"holoviews>=1.19.1",
|
|
94
|
+
"bokeh>=3.4.3",
|
|
95
|
+
"streamlit>=1.38.0",
|
|
96
|
+
"seaborn>=0.13.2",
|
|
97
|
+
"pyod>=2.0.1",
|
|
98
|
+
"tables>=3.10.1",
|
|
99
|
+
"graphviz>=0.20.3",
|
|
100
|
+
"altair>=5.4.1",
|
|
101
|
+
]
|
|
102
|
+
net = [
|
|
103
|
+
"cryptography>=43.0.0",
|
|
104
|
+
"requests>=2.32.3",
|
|
105
|
+
"networkx>=3.3",
|
|
106
|
+
"zmq>=0.0.0",
|
|
107
|
+
"psutil>=6.0.0",
|
|
108
|
+
"textfsm>=1.1.3",
|
|
109
|
+
"pandas>=2.2.2",
|
|
110
|
+
"polars>=1.5.0",
|
|
111
|
+
"pyshark>=0.6",
|
|
112
|
+
"schedule>=1.2.2",
|
|
113
|
+
]
|
|
114
|
+
|
|
115
|
+
[build-system]
|
|
116
|
+
requires = ["hatchling"]
|
|
117
|
+
build-backend = "hatchling.build"
|