File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 1- """This module makes the pytest_persistence plugin pip installable."""
21from 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 ()
You can’t perform that action at this time.
0 commit comments