-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
35 lines (32 loc) · 929 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
[build-system]
requires = ["maturin>=0.13,<0.14"]
build-backend = "maturin"
[project]
name = "pandas-maxminddb"
version = "0.2.1"
description = "Fast geolocation library for Pandas Dataframes, built on Numpy C-FFI"
requires-python = ">=3.8"
license = {text = "MIT"}
dependencies = [
"pandas",
"numpy"
]
classifiers = [
"License :: OSI Approved :: MIT License",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: GIS",
"Programming Language :: Python",
"Programming Language :: Rust",
"Operating System :: POSIX",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux"
]
[tool.maturin]
python-source = "python"
[tool.black]
line-length = 120
include = '\.pyi?$'
exclude = '(^/.git|^/.venv|^/.nox|^/.pytest_cache)'