-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (32 loc) · 982 Bytes
/
Copy pathsetup.py
File metadata and controls
34 lines (32 loc) · 982 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
28
29
30
31
32
33
34
#!/usr/bin/env python
import sys
try:
from distutils.errors import DistutilsSetupError
from setuptools import setup, find_packages
from setuptools.command.install import install
except ImportError:
print("setup tools required. Please run: "
"pip install setuptools).")
sys.exit(1)
setup(name='terradog',
use_scm_version=True,
setup_requires=['setuptools_scm'],
description='Peak6 Datadog Automation',
author='Peak6 Technologies',
author_email='devops@peak6.com',
install_requires=[
"click>=7.1.2,<8.0.0",
"coloredlogs>=15.0,<16.0.0",
"Jinja2==2.11.3",
"ruyaml>=0.20.0,<0.21.0",
"GitPython==3.1.11"
],
packages=find_packages(
exclude=['tests']),
include_package_data=True,
entry_points=''' #for click integration
[console_scripts]
terradog=terradog.cli:cli
''',
python_requires=">=3.9"
)