Skip to content

Commit

Permalink
Merge pull request #28 from fundakol/fix-deprecation-warnings
Browse files Browse the repository at this point in the history
Update requirements to fix deprecation warnings
  • Loading branch information
fundakol authored Aug 1, 2024
2 parents f2a5638 + 439c913 commit cfb8034
Show file tree
Hide file tree
Showing 4 changed files with 36 additions and 41 deletions.
35 changes: 34 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,42 @@
[build-system]
requires = [
"setuptools>=45",
"wheel",
"setuptools_scm>=6.2"
]
build-backend = "setuptools.build_meta"

[tool.setuptools_scm]

[project]
name = "behave-xray"
dynamic = ["version"]
authors = [
{ name = "Lukasz Fundakowski", email = "fundakol@yahoo.com" }
]
description = "Behave JIRA XRAY results uploader"
readme = "README.rst"
requires-python = ">=3.7"
keywords = ["behave, JIRA, XRAY"]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
"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",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
dependencies = [
"behave",
"requests",
"pluggy"
]

[project.urls]
homepage = "https://github.com/fundakol/behave-xray"

[tool.behave.formatters]
xray-formatter = "behave_xray:XrayFormatter"
4 changes: 2 additions & 2 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Flask==2.0.3
Flask==3.0.3
pytest
pytest-cov
Werkzeug==2.0.2
Werkzeug==3.0.3
34 changes: 0 additions & 34 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,37 +1,3 @@
[metadata]
name = behave-xray
url = https://github.com/fundakol/behave-xray
author = Lukasz Fundakowski
author_email = fundakol@yahoo.com
description = Behave JIRA XRAY results uploader
long_description=file: README.md
long_description_content_type = text/markdown
python_requires = >= 3.7
keywords = behave JIRA XRAY
classifiers =
Development Status :: 4 - Beta
Programming Language :: Python :: 3
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
Programming Language :: Python :: 3.12
License :: OSI Approved :: Apache Software License
Operating System :: OS Independent

[options]
packages = find:
package_dir =
=src
install_requires =
behave
pluggy
requests

[options.packages.find]
where = src

[flake8]
max-line-length = 120

Expand Down
4 changes: 0 additions & 4 deletions setup.py

This file was deleted.

0 comments on commit cfb8034

Please sign in to comment.