-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
66 lines (59 loc) · 1.6 KB
/
pyproject.toml
File metadata and controls
66 lines (59 loc) · 1.6 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "v2xflexstack"
version = "0.11.1"
authors = [
{ name = "Jordi Marias-i-Parella", email = "jordi.marias@i2cat.net" },
{ name = "Daniel Ulied Guevara", email = "daniel.ulied@i2cat.net" },
{ name = "Adria Pons Serra", email = "adria.pons@i2cat.net" },
{ name = "Marc Codina Bartumeus", email = "marc.codina@i2cat.net" },
{ name = "Lluc Feixa Morancho", email = "lluc.feixa@i2cat.net"},
]
description = "Implementation of the ETSI C-ITS protocol stack"
keywords = [
"V2X",
"C-ITS",
"ITS",
"ETSI",
"ITS-G5",
"IEEE 802.11p",
"ITS-S",
"ITS-G5",
"CAM",
"DENM",
"VAM",
]
readme = "README.md"
license = { file = "LICENSE" }
classifiers = [
"License :: OSI Approved :: GNU Affero General Public License v3",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Libraries :: Python Modules",
]
requires-python = ">=3.8"
dependencies = [
'asn1tools==0.165.0',
'python-dateutil==2.8.2',
'tinydb==4.7.1',
'ecdsa==0.18.0',
]
[project.urls]
Homepage = "https://flexstack.eu"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
"*" = ["*.so"]
[bdist_wheel]
universal = 1