forked from FoundryGroup/Mattermark
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
25 lines (25 loc) · 755 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
################################################################################
# Setup file for the mattermark package.
#
# Author: Carl Cortright
# Date: 1/16/2017
#
################################################################################
from distutils.core import setup
setup(
name = 'mattermark',
packages = ['mattermark'],
version = '0.4.1',
description = 'Wrapper for the Mattermark API',
author = 'Carl Cortright',
author_email = '[email protected]',
url = 'https://github.com/FoundryGroup/Mattermark',
download_url = 'https://github.com/FoundryGroup/Mattermark/tarball/0.2',
keywords = ['mattermark', 'api'],
classifiers = [],
install_requires=[
"requests",
"PyYAML",
"pprint",
],
)