-
Notifications
You must be signed in to change notification settings - Fork 46
/
pyproject.toml
45 lines (37 loc) · 1.16 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
[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']
[tool.setuptools.dynamic]
version = {attr = 'savant.__version__'}
dependencies = {file = ['requirements/base.txt']}
[tool.black]
skip-string-normalization = true
[tool.pylint.messages_control]
max-line-length = 88
[tool.isort]
profile = "black"