-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
60 lines (53 loc) · 1.66 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "snowtools"
version = "2.0.1"
dependencies = [
'matplotlib',
'netCDF4',
'numpy',
'scipy',
'python-dateutil',
'pyproj',
'shapely',
'psycopg2',
'pyshp',
'pandas',
'xarray',
'cartopy',
'bronx',
]
requires-python = ">=3.6"
readme = "README.md"
description = "Snowtools is a recommended python package to pre-process, run and post-process simulations with the SURFEX-Crocus snowpack model."
license = {file = "LICENCE.txt"}
classifiers=[
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Topic :: Scientific/Engineering',
'License :: CeCILL-C Free Software License Agreement (CECILL-C)',
]
authors = [
{name = "Snowtools team, leaded by Matthieu Lafaysse, Meteo-France"}
]
maintainers = [
{name = "Snowtools team, leaded by Matthieu Lafaysse, Meteo-France"}
]
[project.urls]
Homepage = "https://github.com/UMR-CNRM/snowtools"
Repository = "https://github.com/UMR-CNRM/snowtools"
Issues = "https://opensource.umr-cnrm.fr/projects/snowtools_git/wiki/Procedure_for_new_users"
[tool.setuptools.packages.find]
where = ["."]
include = ["snowtools*", "cenutils*"]
namespaces = true # to disable scanning PEP 420 namespaces (true by default)
[project.scripts]
s2m = 'snowtools.tasks.s2m_command:main'
proplotter = 'snowtools.plots.stratiprofile.proplotter:main'
procompare = 'snowtools.plots.stratiprofile.procompare:main'