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(
|
||||
name="dzonegit",
|
||||
version="0.1",
|
||||
description="Git hooks to admin DNS zone files in git",
|
||||
author="Ondřej Caletka",
|
||||
author_email="ondrej@caletka.cz",
|
||||
license="MIT",
|
||||
py_modules=["dzonegit"],
|
||||
entry_points={
|
||||
name="dzonegit",
|
||||
version="0.1",
|
||||
description="Git hooks to admin DNS zone files in git",
|
||||
author="Ondřej Caletka",
|
||||
author_email="ondrej@caletka.cz",
|
||||
license="MIT",
|
||||
py_modules=["dzonegit"],
|
||||
setup_requires=['pytest-runner', ],
|
||||
tests_require=['pytest', ],
|
||||
entry_points={
|
||||
"console_scripts": [
|
||||
"dzonegit = dzonegit:main",
|
||||
"pre-commit = dzonegit:pre_commit",
|
||||
],
|
||||
},
|
||||
],
|
||||
},
|
||||
)
|
||||
|
||||
|
Reference in New Issue
Block a user