forked from gotojeffray/aws-tagger
-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
32 lines (31 loc) · 877 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
import os
from setuptools import setup, find_packages
import warnings
setup(
name='aws-tagger',
version='0.6.3',
packages=find_packages(),
include_package_data=True,
install_requires=[
'boto3>=1.4.4',
'botocore>=1.5.7',
'click>=6.6',
'docutils>=0.13.1',
'futures>=3.0.5',
'jmespath>=0.9.1',
'retrying>=1.3.3',
's3transfer>=0.1.10',
'six>=1.10.0'
],
entry_points={
"console_scripts": [
"aws-tagger=tagger.cli:cli",
]
},
author="Patrick Cullen and the WaPo platform tools team",
author_email="[email protected]",
url="https://github.com/washingtonpost/aws-tagger",
download_url = "https://github.com/washingtonpost/aws-tagger/tarball/v0.6.3",
keywords = ['tag', 'tagger', 'tagging', 'aws'],
classifiers = []
)