-
Notifications
You must be signed in to change notification settings - Fork 29
/
setup.py
35 lines (29 loc) · 805 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
from setuptools import setup
setup(
# general meta
name='ebs-deploy',
version='2.0.1',
author='Brian C. Dilley',
author_email='[email protected]',
description='Python based command line tools for managing '
'Amazon Elastic Beanstalk applications.',
platforms='any',
url='https://github.com/briandilley/ebs-deploy',
download_url='https://github.com/briandilley/ebs-deploy',
# packages
packages=[
'ebs_deploy',
'ebs_deploy.commands'
],
# dependencies
install_requires=[
'boto>=2.45.0',
'pyyaml>=3.10'
],
# additional files to include
include_package_data=True,
# the scripts
scripts=['scripts/ebs-deploy'],
# wut?
classifiers=['Intended Audience :: Developers']
)