-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathpyproject.toml
More file actions
67 lines (58 loc) · 1.42 KB
/
pyproject.toml
File metadata and controls
67 lines (58 loc) · 1.42 KB
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
67
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "flatdata-py"
version = "0.4.11"
description = "Python 3 implementation of Flatdata"
readme = "README.md"
requires-python = ">=3.10"
authors = [
{ name = "Flatdata Developers" },
]
classifiers = [
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
]
dependencies = [
"flatdata-generator==0.4.11",
"numpy",
"pandas",
]
[project.optional-dependencies]
inspector = [
"IPython",
]
[project.scripts]
flatdata-inspector = "flatdata.lib.inspector:main[inspector]"
flatdata-writer = "flatdata.lib.writer:main[writer]"
[project.urls]
Homepage = "https://github.com/heremaps/flatdata"
[tool.hatch.build.targets.sdist]
include = [
"/flatdata",
]
[tool.hatch.build.targets.wheel]
packages = ["flatdata"]
[tool.pytest.ini_options]
testpaths = [ "tests" ]
python_files = [ "test_*.py" ]
python_classes = [ "Test*" ]
python_functions = [ "test_*" ]
[tool.mypy]
python_version = "3.10"
namespace_packages = true
explicit_package_bases = true
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = true
check_untyped_defs = true
warn_redundant_casts = true
warn_unused_ignores = true
no_implicit_optional = true
strict_equality = true
disallow_any_generics = true
[[tool.mypy.overrides]]
module = "pandas"
ignore_missing_imports = true