-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (41 loc) · 1021 Bytes
/
pyproject.toml
File metadata and controls
48 lines (41 loc) · 1021 Bytes
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "flatdata-py"
version = "0.4.10"
description = "Python 3 implementation of Flatdata"
readme = "README.md"
authors = [
{ name = "Flatdata Developers" },
]
classifiers = [
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
]
dependencies = [
"flatdata-generator==0.4.10",
"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_*" ]