Skip to content

Commit 055e8fd

Browse files
committed
Migrate to pyproject.toml
1 parent daa45ac commit 055e8fd

File tree

7 files changed

+42
-47
lines changed

7 files changed

+42
-47
lines changed

pyproject.toml

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
[project]
2+
name = "rectifiedgrid"
3+
version = "2.0.4"
4+
dependencies = [
5+
# data structures and analyses
6+
"numpy",
7+
"geopandas",
8+
"scipy",
9+
"Cartopy<0.20",
10+
# I/O
11+
"rasterio",
12+
"fiona",
13+
"rioxarray",
14+
# vector data utils
15+
"shapely", # no-binary
16+
"rtree",
17+
"pandas",
18+
# utils
19+
"affine",
20+
"matplotlib",
21+
"mapclassify",
22+
"gisdata",
23+
"pyepsg",
24+
]
25+
requires-python = ">=3.8"
26+
authors = [{ name = "Stefano Menegon", email = "[email protected]" }]
27+
description = "RectifiedGrid is a python module to deal with rectified grid."
28+
readme = "README.md"
29+
license = { text = "GPLv3" }
30+
classifiers = [
31+
"Development Status :: 5 - Production/Stable",
32+
"Topic :: Utilities",
33+
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
34+
]
35+
36+
[project.urls]
37+
Repository = "https://github.com/CNR-ISMAR/rectifiedgrid"
38+
"Bug Tracker" = "https://github.com/CNR-ISMAR/rectifiedgrid/issues"
39+
40+
[build-system]
41+
requires = ["setuptools >= 61.0"]
42+
build-backend = "setuptools.build_meta"

setup.py

Lines changed: 0 additions & 47 deletions
This file was deleted.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)