-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
33 lines (29 loc) · 969 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
"""This module makes the pytest_persistence plugin pip installable."""
from setuptools import setup
from pytest_persistence import __version__
with open("README.md", "r") as fh:
long_description = fh.read()
extra_requirements = {
'dev': [
'pytest'
]
}
setup(name="pytest-persistence",
version=__version__,
description="Pytest tool for persistent objects",
author="Jakub Urban",
author_email="[email protected]",
maintainer="Jakub Urban",
url="https://github.com/JaurbanRH/pytest-persistence",
packages=["pytest_persistence"],
long_description=long_description,
entry_points={
"pytest11": ["persistence = pytest_persistence.plugin"]
},
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
],
)