1
0
mirror of https://github.com/oskar456/dzonegit.git synced 2024-05-11 05:55:41 +00:00
Files
oskar456-dzonegit/setup.py
Ondřej Caletka 62e35c59d0 version 0.6
2018-08-20 15:30:45 +02:00

43 lines
1.4 KiB
Python

from setuptools import setup
from pathlib import Path
readme = Path(__file__).with_name("README.rst").read_text()
setup(
name="dzonegit",
version="0.6",
description="Git hooks to manage a repository of DNS zones",
long_description=readme,
long_description_content_type="text/x-rst",
url="https://github.com/oskar456/dzonegit",
author="Ondřej Caletka",
author_email="ondrej@caletka.cz",
license="MIT",
py_modules=["dzonegit"],
setup_requires=["pytest-runner"],
python_requires=">=3.5",
tests_require=["pytest"],
entry_points={
"console_scripts": [
"dzonegit-pre-commit = dzonegit:pre_commit",
"dzonegit-pre-receive = dzonegit:pre_receive",
"dzonegit-post-receive = dzonegit:post_receive",
"dzonegit-update = dzonegit:update",
"dzonegit-smudge-serial = dzonegit:smudge_serial",
],
},
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Software Development :: Version Control :: Git",
"Topic :: System :: Systems Administration",
],
)