-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.cfg
45 lines (34 loc) · 990 Bytes
/
setup.cfg
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
[metadata]
name = detd
version = 0.1.dev0
# FIXME Pick version up from __init__.py
# See https://github.com/pypa/setuptools/pull/1753
# version = attr: detd.__version__
description = TSN Service Prototype
long_description = A proof-of-concept for a developer-friendly system service to handle time-sensitive applications.
license = BSD 3-Clause License
license_files = LICENSE
author = Hector Blanco Alcaine
author_email = [email protected]
url = https://github.com/Avnu/detd
[options]
packages = find:
# The requires below have been used as reference baseline for detd's release
# tests and security checks.
# Modify these requires at your own risk!
python_requires = >=3.8, <3.9
install_requires =
protobuf ==3.6.1.3
scripts =
setup_qos.sh
detd/detd
[options.package_data]
detd = *.proto
[options.exclude_package_data]
detd =
detd.service
detd
[coverage:run]
omit=/usr/lib/python3/dist-packages/*, tests/*
concurrency = multiprocessing
parallel = True