-
-
Notifications
You must be signed in to change notification settings - Fork 85
/
pyproject.toml
44 lines (40 loc) · 957 Bytes
/
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
[project]
name = "pymap3d"
version = "2.5.1"
description = "pure Python (no prereqs) coordinate conversions, following convention of several popular Matlab routines."
readme = "README.md"
requires-python = ">=3.7"
license = {file = "LICENSE.txt"}
keywords = ["geodesy"]
classifiers = [
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Science/Research',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering :: GIS'
]
authors = [{name = "Michael Hirsch"}]
[project.urls]
homepage = "https://github.com/geospace-code/pymap3d"
[project.optional-dependencies]
test = [
"pytest"
]
lint = [
"flake8",
"flake8-bugbear",
"flake8-builtins",
"flake8-blind-except",
"mypy >= 0.800"
]
full = [
"python-dateutil",
"numpy >= 1.10.0",
"astropy",
"xarray"
]
[tool.black]
line-length = 100
[tool.pytest.ini_options]
addopts = "-ra -v"