forked from aristanetworks/j2lint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
37 lines (35 loc) · 1.1 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
import setuptools
from j2lint import (__author__, __license__,
NAME, VERSION, DESCRIPTION)
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name=NAME,
version=VERSION,
author="Manuwela Kanade",
author_email="manuwela.kanade@gslab.com",
description=DESCRIPTION.split('\n')[0],
long_description=long_description,
long_description_content_type="text/markdown",
url="https://gitlab.aristanetworks.com/ansible-team/jinja2-linter",
project_urls={
"Bug Tracker": "https://gitlab.aristanetworks.com/ansible-team/jinja2-linter/issues",
},
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
packages=setuptools.find_packages(exclude=['tests', 'tests.*']),
entry_points={
'console_scripts': [
'j2lint = j2lint.cli:run',
]
},
install_requires=[
'jinja2',
],
python_requires=">=3.6",
keywords=['jinja', 'jinja2', 'lint', 'linter'],
zip_safe=False,
include_package_data=True
)