Skip to content

Commit f8c4d5a

Browse files
committed
Update to setup.cfg
1 parent 00518bd commit f8c4d5a

2 files changed

Lines changed: 28 additions & 32 deletions

File tree

setup.cfg

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
[metadata]
2+
name = pytest-persistence
3+
version = 0.1.11
4+
description = Pytest plugin for persistent objects
5+
author = Jakub Urban
6+
author_email = kubo.urban@gmail.com
7+
maintainer = Matej Dujava
8+
maintainer_email = mdujava@redhat.com
9+
url = https://github.com/3scale-qe/pytest-persistence
10+
long_description = file: README.md
11+
classifiers =
12+
Programming Language :: Python :: 3
13+
Programming Language :: Python :: 3.9
14+
Programming Language :: Python :: 3.10
15+
Programming Language :: Python :: 3.11
16+
Programming Language :: Python :: 3.12
17+
Programming Language :: Python :: 3.13
18+
Framework :: Pytest
19+
Operating System :: OS Independent
20+
License :: OSI Approved :: MIT License
21+
22+
[options]
23+
packages = pytest_persistence
24+
25+
[options.entry_points]
26+
pytest11 =
27+
persistence = pytest_persistence.plugin

setup.py

Lines changed: 1 addition & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -1,33 +1,2 @@
1-
"""This module makes the pytest_persistence plugin pip installable."""
21
from setuptools import setup
3-
4-
from pytest_persistence import __version__
5-
6-
with open("README.md", "r") as fh:
7-
long_description = fh.read()
8-
9-
extra_requirements = {
10-
'dev': [
11-
'pytest'
12-
]
13-
}
14-
15-
setup(name="pytest-persistence",
16-
version=__version__,
17-
description="Pytest tool for persistent objects",
18-
author="Jakub Urban",
19-
author_email="kubo.urban@gmail.com",
20-
maintainer="Jakub Urban",
21-
url="https://github.com/JaurbanRH/pytest-persistence",
22-
packages=["pytest_persistence"],
23-
long_description=long_description,
24-
entry_points={
25-
"pytest11": ["persistence = pytest_persistence.plugin"]
26-
},
27-
classifiers=[
28-
"Programming Language :: Python :: 3",
29-
"Programming Language :: Python :: 3.7",
30-
"Operating System :: OS Independent",
31-
"License :: OSI Approved :: MIT License",
32-
],
33-
)
2+
setup()

0 commit comments

Comments
 (0)