Skip to content

Commit c472f5b

Browse files
committed
pep621
1 parent 182e5f2 commit c472f5b

File tree

2 files changed

+39
-3
lines changed

2 files changed

+39
-3
lines changed

pyproject.toml

Lines changed: 38 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,41 @@
1-
[build-system]
2-
requires = ["setuptools", "wheel"]
1+
[project]
2+
name = "pymap3d"
3+
version = "2.5.1"
4+
description = "pure Python (no prereqs) coordinate conversions, following convention of several popular Matlab routines."
5+
readme = "README.md"
6+
requires-python = ">=3.7"
7+
license = {file = "LICENSE.txt"}
8+
keywords = ["geodesy"]
9+
classifiers = [
10+
'Development Status :: 5 - Production/Stable',
11+
'Environment :: Console',
12+
'Intended Audience :: Science/Research',
13+
'Operating System :: OS Independent',
14+
'Programming Language :: Python :: 3',
15+
'Topic :: Scientific/Engineering :: GIS'
16+
]
17+
authors = [{name = "Michael Hirsch"}]
18+
19+
[project.urls]
20+
homepage = "https://github.com/geospace-code/pymap3d"
21+
22+
[project.optional-dependencies]
23+
test = [
24+
"pytest"
25+
]
26+
lint = [
27+
"flake8",
28+
"flake8-bugbear",
29+
"flake8-builtins",
30+
"flake8-blind-except",
31+
"mypy >= 0.800"
32+
]
33+
full = [
34+
"python-dateutil",
35+
"numpy >= 1.10.0",
36+
"astropy",
37+
"xarray"
38+
]
339

440
[tool.black]
541
line-length = 100

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = pymap3d
3-
version = 2.5.0
3+
version = 2.5.1
44
author = Michael Hirsch, Ph.D.
55
author_email = [email protected]
66
description = pure Python (no prereqs) coordinate conversions, following convention of several popular Matlab routines.

0 commit comments

Comments
 (0)