-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (30 loc) · 785 Bytes
/
Copy pathsetup.py
File metadata and controls
33 lines (30 loc) · 785 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
"""
Setuptools definition
"""
import os
from setuptools import setup
# utility function to read the readme
def read(fname):
"""reads a file"""
return open(os.path.join(os.path.dirname(__file__), fname), encoding="UTF-8").read()
setup(
name="multiform",
version="1.0.0",
author="Michael Lohr",
author_email="michael@lohr.dev",
description=("A Multi-Cloud Templating System"),
long_description=read('README.md'),
license="MIT",
packages=['src'],
install_requires=[
"loguru == 0.6.0",
"PyYAML == 6.0",
"Jinja2 == 3.1.1",
"MarkupSafe == 2.1.1",
"Cerberus == 1.3.4",
"pygraphviz == 1.9",
],
entry_points={
"console_scripts": ["multiform=src.main:main"]
}
)