-
Notifications
You must be signed in to change notification settings - Fork 142
Expand file tree
/
Copy pathpyproject.toml
More file actions
92 lines (83 loc) · 2.44 KB
/
pyproject.toml
File metadata and controls
92 lines (83 loc) · 2.44 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
# Copyright (c) Meta Platforms, Inc. and affiliates.
#
# This source code is licensed under the BSD license found in the
# LICENSE file in the root directory of this source tree.
# Build system configuration - tells Python packaging tools how to build this package
# This section is required for modern Python packaging with pyproject.toml
[build-system]
requires = ["setuptools>=61.0", "wheel"] # Tools needed to build the package
build-backend = "setuptools.build_meta" # Use setuptools backend that reads pyproject.toml
[project]
name = "mapillary_tools"
dynamic = ["version"]
description = "Mapillary Image/Video Import Pipeline"
readme = "README.md"
requires-python = ">=3.9"
license = {text = "BSD"}
authors = [
{name = "Mapillary", email = "support@mapillary.com"},
]
keywords = ["mapillary", "gis", "computer vision", "street view"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
dependencies = [
"appdirs>=1.4.4,<2.0.0",
"construct~=2.10.0",
"exifread~=3.0",
"gpxpy~=1.6.0",
"humanize>=4.12.3",
"jsonschema~=4.17.0",
"piexif~=1.1",
"pynmea2>=1.12.0,<2.0.0",
"requests[socks]>=2.20.0,<3.0.0",
"tqdm>=4.0,<5.0",
"typing-extensions>=4.12.2",
]
[project.urls]
Homepage = "https://github.com/mapillary/mapillary_tools"
Repository = "https://github.com/mapillary/mapillary_tools"
Issues = "https://github.com/mapillary/mapillary_tools/issues"
[project.scripts]
mapillary_tools = "mapillary_tools.commands.__main__:main"
[tool.setuptools.dynamic]
version = {attr = "mapillary_tools.VERSION"}
[tool.setuptools.packages.find]
include = ["mapillary_tools*"]
[dependency-groups]
dev = [
"mypy",
"Pillow",
"pyinstaller",
"pyre-check",
"pytest",
"ruff",
"types-appdirs",
"types-requests",
"types-tqdm",
"types-jsonschema",
"usort",
]
# Mypy configuration
[tool.mypy]
# Global mypy settings
[[tool.mypy.overrides]]
module = [
"piexif.*",
"pynmea2.*",
"gpxpy.*",
"exifread.*",
"construct.*",
"py.*",
"humanize.*",
]
ignore_missing_imports = true