forked from app-sre/qontract-validator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
37 lines (30 loc) · 903 Bytes
/
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 find_packages
from setuptools import setup
setup(
name="qontract-validator",
version="0.1.0",
license="BSD",
author="Red Hat App-SRE Team",
author_email="[email protected]",
description="Tools to validate and bundle datafiles for qontract-server",
packages=find_packages(exclude=('tests',)),
install_requires=[
"Click~=7.1",
"jsonschema~=3.2",
"PyYAML~=5.3",
"requests~=2.24"
],
test_suite="tests",
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.6',
],
entry_points={
'console_scripts': [
'qontract-bundler = validator.bundler:main',
'qontract-validator = validator.validator:main',
],
},
)