Skip to content

Commit

Permalink
Merge pull request #141 from hrcorval/release_4.0.2
Browse files Browse the repository at this point in the history
adding pyproject.toml file to project
  • Loading branch information
hrcorval authored Sep 6, 2024
2 parents 1637c39 + 9c25114 commit 19063d7
Showing 1 changed file with 56 additions and 0 deletions.
56 changes: 56 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"

[project]
name = "behavex"
version = "4.0.2"
description = "Agile test wrapper on top of Behave (BDD)."
readme = "README.md"
license = { text = "MIT" }
authors = [
{ name = "Hernan Rey", email = "behavex_users@googlegroups.com" }
]
requires-python = ">=3.5"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Software Development :: Testing"
]

[project.urls]
homepage = "https://github.com/hrcorval/behavex"

[project.dependencies]
behave = "==1.2.6"
behavex-images = "*"
jinja2 = "*"
configobj = "*"
htmlmin = "*"
csscompressor = "*"

[project.optional-dependencies]
dev = [
"pytest",
"pytest-cov",
"flake8",
"black"
]

[tool.setuptools.packages.find]
exclude = ["tests"]

[tool.setuptools.entry-points.console_scripts]
behavex = "behavex.runner:main"

0 comments on commit 19063d7

Please sign in to comment.