Skip to content

Commit

Permalink
Move setup.cfg to pyproject.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
Huite committed Nov 1, 2023
1 parent 04c17d1 commit f57f491
Show file tree
Hide file tree
Showing 3 changed files with 43 additions and 46 deletions.
2 changes: 0 additions & 2 deletions MANIFEST.in

This file was deleted.

44 changes: 43 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,48 @@
[build-system]
requires = ["setuptools>=42", "wheel"]
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.4.1"
maintainers = [{ name = "Huite Bootsma", email = "huite.bootsma@deltares.nl" }]
requires-python = ">=3.7"
dependencies = [
'pandas',
'timml',
'ttim',
'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',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'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"
43 changes: 0 additions & 43 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,46 +1,3 @@
[metadata]
name = gistim
version = 0.4.1
author = Huite Bootsma
author_email = huite.bootsma@deltares.nl
description = GIS utilities for Tim(ML) Analytic Element modeling
url = https://github.com/Deltares/QGIS-Tim
project_urls =
Code=https://github.com/Deltares/QGIS-Tim
Issues=https://github.com/Deltares/QGIS-Tim/issues
long_description = file: README.rst
license = GPL-2.0
classifiers =
Development Status :: 3 - Alpha
Intended Audience :: Science/Research
License :: OSI Approved :: GNU General Public License v2 (GPLv2)
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: Implementation :: CPython
Topic :: Scientific/Engineering
keywords =
groundwater modeling
analytic element

[options]
packages = find:
python_requires = >=3.7
install_requires =
black
geopandas
netCDF4
numba >=0.50
numpy
rioxarray
tqdm
timml
xarray >=0.15

[flake8]
ignore =
# whitespace before ':' - doesn't work well with black
Expand Down

0 comments on commit f57f491

Please sign in to comment.