Skip to content
Snippets Groups Projects
Verified Commit 0e744c6c authored by Nik | Klampfradler's avatar Nik | Klampfradler
Browse files

Initial commit.

parents
No related branches found
No related tags found
No related merge requests found
print('importing')
def pytest_configure(config):
print('configuring')
setup.py 0 → 100644
from setuptools import setup
setup(
name="pytest-django-testing-postgresql",
version='0.1',
description='Use a temporary PostgreSQL database with pytest-django',
author='Dominik George',
author_email='nik@naturalnet.de',
url='https://edugit.org/nik/pytest-django-testing-postgresql',
py_modules=['pytest_django_testing_postgresql'],
install_requires=['testing.postgresql'],
entry_points = {
'pytest11': [
'django_testing_postgresql = pytest_django_testing_postgresql'
]
}
)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment