-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
COM-5522: Release Fluster v0.1 in Github (#126)
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
1 parent
c66410d
commit 1bfcfe2
Showing
1 changed file
with
40 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" |