-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
64 lines (56 loc) · 1.32 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
[build-system]
requires = ["setuptools>=61.2"]
build-backend = "setuptools.build_meta"
[project]
name = "nightingale"
version = "0.0.1"
authors = [{name = "Open Contracting Partnership", email = "[email protected]"}]
description = "An ETL to transform US cities procurement data into OCDS format."
readme = "README.rst"
license = {text = "BSD"}
urls = {Homepage = "https://github.com/open-contracting/nightingale"}
classifiers = [
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: Implementation :: CPython",
]
dependencies = [
"click",
"click-pathlib",
"dict-hash",
"ocdskit",
"openpyxl",
"pydantic",
"simplejson",
]
[project.scripts]
nightingale = "nightingale.cli:run"
[project.optional-dependencies]
test = [
"coverage",
"pytest",
"pytest-mock",
]
types = [
"mypy",
"types-openpyxl",
"types-simplejson",
]
[tool.setuptools.packages.find]
exclude = [
"tests",
"tests.*",
]
[tool.ruff]
line-length = 119
target-version = "py311"
[tool.ruff.lint]
ignore = ["E501"]
[tool.pytest.ini_options]
addopts = "--doctest-modules"
[tool.mypy]
strict = true
warn_unreachable = true
exclude = "(build|docs|tests)/"