-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
68 lines (58 loc) · 1.84 KB
/
Copy pathpyproject.toml
File metadata and controls
68 lines (58 loc) · 1.84 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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "firedz"
dynamic = ["version"]
description = "firedz : Meteorological Fire Index forecast for DZair"
authors = [
{ name = "Walid CHIKHI", email = "waliidchikhi@gmail.com" },
{ name = "KERROUMI Nour Elisslam", email = "n.kerroumi@meteo.dz" },
{ name = "HELALI MAHIDDINE ImadEddine", email = "i.helali@meteo.dz" },
]
maintainers = [
{ name = "Walid CHIKHI", email = "waliidchikhi@gmail.com" },
{ name = "KERROUMI Nour Elisslam", email = "n.kerroumi@meteo.dz" },
{ name = "HELALI MAHIDDINE ImadEddine", email = "i.helali@meteo.dz" },
]
readme = "README.md"
license = {file = "LICENSE.txt"}
keywords = ["NWP", "meteorology", "Fire", "FWI","Production","WildFire","HDW","KBDI"]
classifiers = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'Programming Language :: Python',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Operating System :: Unix',
]
requires-python = ">=3.6"
dependencies=[
"paramiko",
"numpy",
"pandas",
"pytaps",
"matplotlib",
"cartopy",
"geopandas",
"shapely"
]
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.dynamic]
version = {attr = "firedz.__version__"}
[project.urls]
source = "https://github.com/NWP-Dz/Fire_dz.git"
download = "https://github.com/NWP-Dz/Fire_dz/releases"
tracker = "https://github.com/NWP-Dz/Fire_dz/issues"
[tool.pytest.ini_options]
pythonpath = [
"src",
]