-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
79 lines (68 loc) · 1.79 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
[build-system]
requires = ['setuptools', 'setuptools-scm']
build-backend = 'setuptools.build_meta'
[project]
name = 'sensus-loci'
version = '0.2.0'
authors = [
{name='Álvaro Ramajo-Ballester', email='[email protected]'},
]
description = '3D object detection from infrastructure for autonomous driving'
readme = 'README.md'
# requires-python = '>=3.8,<3.10'
requires-python = '==3.8.*'
classifiers = [
'Programming Language :: Python :: 3',
# 'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
# 'Programming Language :: Python :: 3.9',
# 'Programming Language :: Python :: 3.10',
# 'Programming Language :: Python :: 3.11',
'License :: OSI Approved :: GNU Affero General Public License v3',
'Natural Language :: English',
'Operating System :: POSIX :: Linux',
]
keywords = [
'python',
'pytorch',
'deep-learning',
'computer-vision',
]
dependencies = [
'torch',
'mmcv>=2.0.0rc4',
'mmdet>=3.0.0',
'mmdet3d>=1.1.0',
'mmengine',
'seaborn'
]
[project.optional-dependencies]
dev = [
]
docs = [
'sphinx==7.1.2',
'sphinx_rtd_theme==1.3.0',
'sphinx-copybutton==0.5.1',
'sphinx-markdown-tables==0.0.17',
'sphinx-tabs',
'numpydoc==1.5.0',
'myst-parser==2.0.0',
# 'recommonmark==0.7.1',
# 'sphinx_design',
# 'furo',
# 'sphinx-material'
]
full = ['sensus-loci[dev,docs]']
[tool.setuptools.packages]
# find = {include = ['sensus']}
find = {namespaces = false, exclude = ['test']}
[tool.ruff]
line-length = 79
# extend-select = ['Q']
ignore = ['F401']
[tool.ruff.format]
# Prefer single quotes over double quotes.
quote-style = 'single'
[project.urls]
'Homepage' = 'https://github.com/ramajoballester/sensus-loci'
'Bug Tracker' = 'https://github.com/ramajoballester/sensus-loci/issues'