-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (26 loc) · 937 Bytes
/
setup.py
File metadata and controls
28 lines (26 loc) · 937 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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="runbook",
version="0.2",
description="a tool for defining repeatable processes in code",
author="Benjamin Fagin",
author_email="blouis@unquietcode.com",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/UnquietCode/runbook.py",
keywords="runbook playbook process",
packages=setuptools.find_namespace_packages(exclude=['test']),
install_requires=[
'mdv == 1.7.4', # must install from commit 80f333ba
'markt == 0.0', # must install from repo
'click >= 7.0',
],
license='OSI Approved :: Apache Software License',
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
],
)