-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
52 lines (46 loc) · 1.31 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
[build-system]
build-backend = "setuptools.build_meta"
requires = ["setuptools>=61.0"]
[project]
authors = [
{name = "Koordinates Limited", email = "[email protected]"},
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Scientific/Engineering :: GIS",
]
dependencies = [
"python-dateutil>=2,<3",
"pytz",
"requests>=2.5,<3",
"requests-toolbelt",
"importlib-metadata;python_version<'3.8'",
]
description = "A Python client library for a number of Koordinates web APIs"
dynamic = ["readme"]
keywords = ["koordinates", "api"]
name = "koordinates"
requires-python = ">=3.7"
version = "0.7.1"
[project.urls]
Source = "https://github.com/koordinates/python-client"
[project.optional-dependencies]
dev = [
"coverage>=3.7,<4",
"pytest>=3.3",
"responses>=0.3",
]
[tool.setuptools]
packages = ["koordinates"]
[tool.setuptools.dynamic]
readme = {file = "README.md", content-type = "text/markdown"}
[tool.black]
target-version = ['py37']