-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
85 lines (77 loc) · 1.82 KB
/
pyproject.toml
File metadata and controls
85 lines (77 loc) · 1.82 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
[build-system]
build-backend = "setuptools.build_meta"
requires = [
"setuptools>=77.0",
"wheel",
]
[project]
name = "simpledet"
version = "0.1.0"
description = "Native PyTorch Lightning toolkit for object detection workflows"
readme = "README.md"
requires-python = ">=3.10,<3.13"
license = "MIT"
license-files = ["LICENSE"]
authors = [
{ name = "Roberto Del Prete", email = "roberto.delprete@ext.esa.int" }
]
keywords = ["object-detection", "pytorch-lightning", "remote-sensing"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = []
[project.optional-dependencies]
cpu = [
"torch>=2.4,<2.11",
"torchvision>=0.19,<0.26",
"pytorch-lightning>=2.4,<3",
"numpy>=1.26,<3",
"scipy>=1.12,<2",
"shapely>=2,<3",
"pycocotools>=2.0.11,<3",
"terminaltables>=3.1.10,<4",
"timm>=1.0,<2",
"matplotlib>=3.8,<4",
]
geo = [
"pandas>=2.2,<3",
"rasterio>=1.4,<2",
"geopandas>=1.0,<2",
]
plots = [
"SciencePlots>=2.1,<3",
"matplotlib",
]
dev = [
"build",
"coverage",
"tomli>=2.0.1; python_version < '3.11'",
"twine",
"ruff",
]
[project.urls]
Homepage = "https://github.com/sirbastiano/MDet"
Source = "https://github.com/sirbastiano/MDet"
Documentation = "https://github.com/sirbastiano/MDet/tree/main/docs"
[project.scripts]
simpledet = "simpledet.cli:main"
[tool.setuptools]
include-package-data = false
[tool.setuptools.package-dir]
"" = "simpledet"
[tool.setuptools.packages.find]
where = ["simpledet"]
include = ["simpledet*"]
exclude = [
"simpledet.pyscripts*",
"simpledet.src*",
]
namespaces = true
[tool.setuptools.exclude-package-data]
simpledet = []