-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
43 lines (42 loc) · 1.19 KB
/
setup.py
File metadata and controls
43 lines (42 loc) · 1.19 KB
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
38
39
40
41
42
43
from setuptools import setup
#
setup(
author="David Navarro Alvarez",
description="devops base library dist",
url="https://github.com/davengeo/devops-tools",
name="devops-tools-daven",
version='0.0.14',
packages=[
'devopstoolsdaven',
'devopstoolsdaven.reports',
'devopstoolsdaven.common',
'devopstoolsdaven.templates',
'devopstoolsdaven.utils',
'devopstoolsdaven.vault'
],
install_requires=[
'argparse',
'chevron',
'cloudevents',
'json-spec',
'invoke',
'pyramda',
'PyYAML',
'fluent-logger',
'prometheus-client',
'dependency-injector>=4.0,<5.0',
'devopsprocessor_ifn==0.1.0'
],
package_data={
'config': ['config/templates/hello_world.mustache', 'config/example/example.json'],
'ini': ['app.ini']
},
include_package_data=True,
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: European Union Public Licence 1.2 (EUPL 1.2)',
'Programming Language :: Python :: 3.8',
'Topic :: System :: Systems Administration',
]
)