-
Notifications
You must be signed in to change notification settings - Fork 75
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (39 loc) · 1.21 KB
/
pyproject.toml
File metadata and controls
47 lines (39 loc) · 1.21 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
[build-system]
requires = ['setuptools>=61.0']
build-backend = 'setuptools.build_meta'
[project]
name = 'savant'
description = 'Python Streaming Video Analytics Framework'
authors = [
{name = 'In-Sight Team', email = 'savant@bitworks.software'},
]
readme = 'README.md'
requires-python = '>=3.6'
keywords = ['deepstream', 'opencv', 'machine learning']
license = {file = 'LICENSE'}
classifiers = [
'Environment :: GPU :: NVIDIA CUDA',
'Programming Language :: Python :: 3',
'Topic :: Multimedia :: Video',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
]
dynamic = ['version', 'dependencies']
[project.urls]
homepage = 'https://github.com/insight-platform/Savant'
repository = 'https://github.com/insight-platform/Savant'
documentation = 'https://insight-platform.github.io/Savant/'
[tool.setuptools.packages.find]
include = ['savant*']
[tool.setuptools.package-data]
savant = ['VERSION', '**/*.yml', '**/*.so']
[tool.setuptools.dynamic]
version = {attr = 'savant.__version__'}
dependencies = {file = ['requirements/base.txt']}
[tool.ruff]
line-length = 88
[tool.ruff.format]
quote-style = "single"
indent-style = "space"
skip-magic-trailing-comma = false
[tool.ruff.lint]
select = ["E", "F", "W", "I"]