-
Notifications
You must be signed in to change notification settings - Fork 17
/
pyproject.toml
44 lines (37 loc) · 1.08 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
[project]
name = "cbsodata"
description = "Statistics Netherlands opendata API client for Python"
authors = [
{ name = "Jonathan de Bruin", email = "jonathandebruinos@gmail.com" }
]
readme = "README.md"
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12"
]
license = {text = "MIT"}
dependencies = ["requests"]
dynamic = ["version"]
requires-python = ">=3.8"
[project.scripts]
cbsodata = "cbsodata.__main__:main"
cbs = "cbsodata.__main__:main"
[project.optional-dependencies]
lint = ["ruff"]
test = ["pytest"]
[build-system]
build-backend = 'setuptools.build_meta'
requires = ["setuptools>=45", "setuptools_scm[toml]>=6.2"]
[tool.setuptools]
packages = ["cbsodata"]
[tool.setuptools_scm]
write_to = "cbsodata/_version.py"
[tool.ruff]
select = ["E", "F", "UP", "I", "B"]
[tool.ruff.isort]
force-single-line = true