Skip to content

Commit

Permalink
COM-5522: Release Fluster v0.1 in Github (#126)
Browse files Browse the repository at this point in the history
pyproject.toml
* made modifications to reflect the current state of the project
* added info relevant to python package build ahead of publishing
  • Loading branch information
mdimopoulos authored Dec 20, 2022
1 parent c66410d commit 1bfcfe2
Showing 1 changed file with 40 additions and 8 deletions.
48 changes: 40 additions & 8 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,21 +1,53 @@
[build-system]
requires = ["setuptools"]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"

[project]
name = "fluster"
description = "Testing framework for decoders conformance"
license = {file = "LICENSE"}
name = "fluster-conformance"
version = "0.1"
authors = [
{name = "Pablo Marcos Oltra", email="[email protected]"},
{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"
dynamic = ["version"]
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.scripts]
fluster = "fluster.main:fluster_main"
[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"

0 comments on commit 1bfcfe2

Please sign in to comment.