-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (29 loc) · 753 Bytes
/
setup.py
File metadata and controls
34 lines (29 loc) · 753 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
34
from setuptools import setup, find_packages
import unittest
def my_test_suite():
test_loader = unittest.TestLoader()
test_suite = test_loader.discover('test', pattern='test_*.py')
return test_suite
setup(name='rollout',
version='0.2.3',
description='deployment tool',
url='http://github.com/debtsy/rollout',
author='Kurt Spindler',
author_email='kespindler@gmail.com',
license='MIT',
packages=find_packages(),
zip_safe=False,
entry_points={
'console_scripts': [
'rollout=rollout.cli:main',
],
},
test_suite='setup.my_test_suite',
install_requires=[
"boto3",
"paramiko",
"PyYAML",
"Jinja2",
"slackclient<2.0.0",
],
)