-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
37 lines (33 loc) · 1.05 KB
/
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
34
35
36
37
from setuptools import setup
INSTALL_REQUIRES = [
"graphviz",
]
VERSION = "0.1.0"
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="graphviz-dot-hooks",
version=VERSION,
maintainer="Bastien Gerard",
maintainer_email="bast.gerard@gmail.com",
url="https://github.com/bagerard/graphviz-dot-hooks",
keywords="dot gv linter",
license="MIT License",
description="Python pre-commit hook to check .dot files",
long_description=long_description,
long_description_content_type="text/markdown",
packages=["graphviz_dot_hooks"],
install_requires=INSTALL_REQUIRES,
entry_points={
"console_scripts": [
"check-dot = graphviz_dot_hooks.check_dot:main",
"render-dot-png = graphviz_dot_hooks.render_dot_png:main",
"render-dot-svg = graphviz_dot_hooks.render_dot_svg:main",
]
},
classifiers=[
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Quality Assurance",
],
include_package_data=True,
)