-
Notifications
You must be signed in to change notification settings - Fork 28
/
setup.py
executable file
·31 lines (28 loc) · 972 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
from setuptools import find_packages
from setuptools import setup
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.rst'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='Garcon',
version='1.1.1',
url='https://github.com/xethorn/garcon/',
author='Michael Ortali',
author_email='[email protected]',
description=('Lightweight library for AWS SWF.'),
long_description=long_description,
license='MIT',
packages=find_packages(),
include_package_data=True,
install_requires=['boto3', 'backoff'],
zip_safe=False,
classifiers=[
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
],)