Skip to content
This repository has been archived by the owner on Dec 16, 2019. It is now read-only.

Commit

Permalink
Update setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Kristof Jakab committed Sep 13, 2018
1 parent 074c25e commit e2233d1
Showing 1 changed file with 23 additions and 7 deletions.
30 changes: 23 additions & 7 deletions setup.py
@@ -1,17 +1,33 @@
from os import path

from setuptools import setup, find_packages


here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()

setup(
name="awslog",
version="0.1",
version="0.1.4",
packages=find_packages(),
entry_points={
'console_scripts': [
'awslog = awslog:main',
],
},
install_requires=[
'boto3==1.9',
'six==1.11',
'dateparser==0.7.0',
'crayons==0.1.2',
]
],
author="Kristóf Jakab",
author_email="jaksi07c8@gmail.com",
description="Show the history and changes between configuration versions of AWS resources",
license="MIT",
keywords="amazon aws config log diff",
url="https://github.com/jaksi/awslog",
entry_points={
'console_scripts': [
'awslog = awslog:main',
],
},
long_description=long_description,
long_description_content_type="text/markdown",
)

0 comments on commit e2233d1

Please sign in to comment.