forked from imapex/ciscosparkbot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
37 lines (31 loc) · 821 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
26
27
28
29
30
31
32
33
34
35
36
37
"""
spark-python Installer using setuptools
"""
import os
from setuptools import setup
base_dir = os.path.dirname(__file__)
about = {}
with open(os.path.join(base_dir, "ciscosparkbot", "__about__.py")) as f:
exec(f.read(), about)
test_requirements = [
"requests_mock",
"coverage",
"python-coveralls",
"flake8"
]
setup(
name=about["__title__"],
version=about["__version__"],
packages=["ciscosparkbot"],
author=about["__author__"],
author_email=about["__email__"],
url=about["__uri__"],
license=about["__license__"],
install_requires=["requests",
"ciscosparkapi==0.5.5",
"Flask>=0.12.1"
],
description="Python Bot for Cisco Spark",
test_suite='tests',
tests_require=test_requirements,
)