-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
46 lines (42 loc) · 1.27 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
[build-system]
requires = ["setuptools>=64.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "gistim"
description = "Connects TimML and TTim Analytic Element modeling to QGIS"
readme = "README.md"
version = "0.6.0"
maintainers = [{ name = "Huite Bootsma", email = "[email protected]" }]
requires-python = ">=3.9"
dependencies = [
'pandas',
'timml>=6.3.0',
'ttim>=0.6.5',
'xarray',
]
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU General Public License v2 (GPLv2)',
'Programming Language :: Python',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: Implementation :: CPython',
'Topic :: Scientific/Engineering',
]
keywords = ['groundwater modeling', 'analytic element']
license = { text = "GPL-2.0" }
[project.urls]
Home = "https://github.com/deltares/QGIS-Tim"
Code = "https://github.com/deltares/QGIS-Tim"
Issues = "https://github.com/deltares/QGIS-Tim/issues"
[tool.setuptools]
packages = [
"gistim",
"gistim.geomet",
]
license-files = ["LICENSE"]
[tool.isort]
profile = "black"