forked from fluendo/fluster
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
53 lines (48 loc) · 1.53 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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "fluster-conformance"
version = "0.1"
authors = [
{name = "Pablo Marcos Oltra"},
{name = "Andoni Morales Alastruey", email="[email protected]"},
]
maintainers = [
{name = "Michalis Dimopoulos", email="[email protected]"},
{name = "Ruben Gonzalez", email="[email protected]"},
]
description = "Testing framework for decoder conformance"
readme = "README.md"
license = {file = "LICENSE"}
requires-python = ">=3.6"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Telecommunications Industry",
"License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Multimedia",
"Topic :: Multimedia :: Sound/Audio",
"Topic :: Multimedia :: Video",
"Topic :: Software Development :: Quality Assurance",
"Topic :: Software Development :: Testing",
]
[project.urls]
"Github repository" = "https://github.com/fluendo/fluster/"
[tool.setuptools]
packages = ["fluster", "fluster.decoders"]
[project.optional-dependencies]
dev = [
"black",
"pylint",
"flake8",
"mypy"
]
[project.scripts]
fluster = "fluster.main:fluster_main"