-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
86 lines (76 loc) · 1.95 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
[tool.poetry]
name = "pygeofun"
version = "0.0.14"
description = "Geographic Functions: geodesics and rhumblines, orthodromes and loxodromes"
authors = [
"Jaap Versteegh <[email protected]>",
]
packages = [
{ include = "pygeofun", from = "src" },
]
include = [
{ path = "requirements.txt", format = "sdist" },
{ path = "src/geofun", format = "sdist" },
{ path = "contrib/fmt", format = "sdist" },
{ path = "contrib/geographiclib", format = "sdist" }
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: GIS"
]
readme = "README.rst"
keywords = [
"geodesic",
"rhumb line",
"loxodrome",
"orthodrome",
"distance",
"azimuth"
]
homepage = "https://github.com/jrversteegh/geofun"
repository = "https://github.com/jrversteegh/geofun"
[tool.poetry.dependencies]
python = "^3.9"
[tool.poetry.extras]
docs = ["Sphinx"]
[tool.poetry.group.dev.dependencies]
ipython = "^7.34.0"
pytest = "^7.1.2"
pybind11 = "^2.10.0"
Sphinx = "^5.2.3"
sphinx-rtd-theme = "^1.0.0"
geographiclib = "^2.0"
numpy = "^1.23.3"
cmake = "^3.24.1.1"
wheel = "^0.37.1"
setuptools = "^65.4.1"
tomli = "^2.0.1"
poetry = "^1.2.1"
black = "^22.10.0"
flake8-black = "^0.3.3"
flake8-isort = "^5.0.0"
isort = "^5.10.1"
pytest-cov = "^4.1.0"
gcovr = "^6.0"
six = "^1.16.0"
lexicon = "^2.0.1"
pyyaml = "^6.0.1"
invoke = "^2.2.0"
[tool.poetry.build]
script = "build.py"
generate-setup-file = true
[tool.black]
extend_exclude = "contrib"
[tool.isort]
known_first_party = "src"
extend_skip_glob = ["venv", ".venv", "contrib"]
[tool.pytest.ini_options]
testpaths = ["tests"]
log_file = "tests/logs/pytest.log"
log_file_level = "DEBUG"
log_file_format = "%(asctime)s - %(levelname)s - %(filename)s:%(lineno)s - %(name)s - %(message)s"
[build-system]
requires = ["cmake", "tomli", "setuptools", "wheel", "pybind11", "poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"