-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
66 lines (61 loc) · 1.64 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
[build-system]
requires = ["maturin>=0.13,<0.14"]
build-backend = "maturin"
[project]
name = "fast-geodist"
version = "0.4.0"
requires-python = ">=3.7"
description = "An implementation of Haversine distance calculations using Rust and PyO3"
authors = [
{ name = "Martin Black", email = "18327836+mblackgeo@users.noreply.github.com" },
]
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS",
"Topic :: Software Development :: Libraries :: Python Modules",
"Typing :: Typed",
]
dependencies = ["numpy~=1.0"]
[project.urls]
Homepage = "https://github.com/mblackgeo/fast-geodist"
Repository = "https://github.com/mblackgeo/fast-geodist"
[tool.black]
line-length = 88
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
'''
[tool.isort]
profile = "black"
multi_line_output = 3
line_length = 88
known_first_party = ["fast_geodist"]
[tool.semantic_release]
version_variable = ["python/fast_geodist/__init__.py:__version__"]
version_toml = ["pyproject.toml:project.version", "Cargo.toml:package.version"]
build_command = ""
major_on_zero = true
branch = "main"
upload_to_pypi = false
upload_to_repository = false
upload_to_release = false
changelog_file = "CHANGELOG.md"