-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (26 loc) · 876 Bytes
/
setup.py
File metadata and controls
27 lines (26 loc) · 876 Bytes
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
from setuptools import setup, find_packages
setup(
name="dansabel",
version="1.5.1",
install_requires=[
"ruamel.yaml",
"jinja2",
"ansible-core",
"ansible", # large dep, but needed for ansible_collections
# These test cases depend on it:
# testcases/good/templates/namespaced-filters.j2
# testcases/good/templates/namespaced-filters-community.j2
],
author="Semaphor",
author_email="info@semaphor.dk",
description="Ansible YAML/Jinja2 static analysis tool and pre-commit hook",
license="ISC",
keywords="ansible ",
url="https://github.com/semaphor-dk/dansabel",
packages=find_packages(),
include_package_data=True,
long_description=open("README.md").read(),
classifiers=["License :: OSI Approved :: ISC license"],
scripts=["jinjalint.py"],
data_files=[],
)