mirror of
https://github.com/oskar456/dzonegit.git
synced 2024-05-11 05:55:41 +00:00
Pytest integration
This commit is contained in:
23
setup.py
23
setup.py
@ -2,18 +2,19 @@ from setuptools import setup
|
|||||||
|
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name="dzonegit",
|
name="dzonegit",
|
||||||
version="0.1",
|
version="0.1",
|
||||||
description="Git hooks to admin DNS zone files in git",
|
description="Git hooks to admin DNS zone files in git",
|
||||||
author="Ondřej Caletka",
|
author="Ondřej Caletka",
|
||||||
author_email="ondrej@caletka.cz",
|
author_email="ondrej@caletka.cz",
|
||||||
license="MIT",
|
license="MIT",
|
||||||
py_modules=["dzonegit"],
|
py_modules=["dzonegit"],
|
||||||
entry_points={
|
setup_requires=['pytest-runner', ],
|
||||||
|
tests_require=['pytest', ],
|
||||||
|
entry_points={
|
||||||
"console_scripts": [
|
"console_scripts": [
|
||||||
"dzonegit = dzonegit:main",
|
"dzonegit = dzonegit:main",
|
||||||
"pre-commit = dzonegit:pre_commit",
|
"pre-commit = dzonegit:pre_commit",
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
)
|
)
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user