-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (24 loc) · 700 Bytes
/
setup.py
File metadata and controls
26 lines (24 loc) · 700 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
from setuptools import setup
with open('README.rst', 'r') as f:
setup(
name='troposphere-cli',
version='0.1',
description='Troposphere Command Line Interface',
long_description=f.read(),
author='jean-philippe serafin',
author_email='tech@omixy.com',
url='https://github.com/Omixy/troposphere-cli',
packages=['trop'],
install_requires=[
'boto3',
'click',
'pytz',
'troposphere',
],
license='MIT',
entry_points=dict(
console_scripts=['trop=trop.cli:cli.main'],
),
tests_require=['moto'],
test_suite="trop.tests.suite",
)