Skip to content

Commit 6bd2cca

Browse files
authored
Merge pull request #9 from ogajduse/fix/setuptools-deprecation
2 parents 60949c4 + eb2cc8b commit 6bd2cca

File tree

2 files changed

+42
-65
lines changed

2 files changed

+42
-65
lines changed

pyproject.toml

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
[build-system]
2+
requires = ["setuptools"]
3+
build-backend = "setuptools.build_meta"
4+
5+
[project]
6+
name = "pytest-fixture-tools"
7+
version = "1.2.0"
8+
description = "Plugin for pytest which provides tools for fixtures"
9+
dynamic = ["readme"]
10+
authors = [
11+
{ name = "Paylogic International", email = "developers@paylogic.com" },
12+
]
13+
license = {text = "MIT license"}
14+
classifiers = [
15+
"Development Status :: 6 - Mature",
16+
"Intended Audience :: Developers",
17+
"License :: OSI Approved :: MIT License",
18+
"Operating System :: POSIX",
19+
"Operating System :: Microsoft :: Windows",
20+
"Operating System :: MacOS :: MacOS X",
21+
"Topic :: Software Development :: Testing",
22+
"Topic :: Software Development :: Libraries",
23+
"Topic :: Utilities",
24+
"Programming Language :: Python :: 2",
25+
"Programming Language :: Python :: 3",
26+
"Programming Language :: Python :: 3.8",
27+
"Programming Language :: Python :: 3.9",
28+
"Programming Language :: Python :: 3.10",
29+
"Programming Language :: Python :: 3.11",
30+
"Programming Language :: Python :: 3.12",
31+
]
32+
33+
dependencies = ["pytest", "pydot", "py"]
34+
35+
[project.entry-points.pytest11]
36+
pytest-fixture-tools = "pytest_fixture_tools.plugin"
37+
38+
[tool.setuptools]
39+
packages = ["pytest_fixture_tools"]
40+
41+
[tool.setuptools.dynamic]
42+
readme = {file = ["README.rst", "CHANGES.rst"], content-type = "text/x-rst"}

setup.py

Lines changed: 0 additions & 65 deletions
This file was deleted.

0 commit comments

Comments
 (0)