forked from PokaInc/arnparse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
27 lines (23 loc) · 924 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
from distutils.core import setup
import setuptools # required for running `python setup.py bdist_wheel`
from codecs import open
from os import path
here = path.abspath(path.dirname(__file__))
# Get the long description from the README file
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='arnparse',
packages=['arnparse'], # this must be the same as the name above
version='0.0.1',
description='Parse ARNs using Python',
long_description=long_description,
long_description_content_type='text/markdown',
author='Simon-Pierre Gingras',
author_email='[email protected]',
url='https://github.com/PokaInc/arnparse', # use the URL to the github repo
download_url='https://github.com/PokaInc/arnparse/tarball/0.0.1',
keywords=['aws', 'arn', 'parse'], # arbitrary keywords
install_requires=[],
classifiers=[],
)