-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (28 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
import setuptools
with open('README.md', 'r', encoding='utf-8') as fh:
long_description = fh.read()
# maintained automatically in pipeline release to master branch by python-semantic-version
__version__ = '1.1.7'
setuptools.setup(
name='arcimoto-aws-services',
version=__version__,
author='Cord Slatton',
author_email='[email protected]',
description='Library for interacting with Arcimoto AWS services. Used in other repos as a dependency/submodule.',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://bitbucket.org/arcimotocode1/arcimoto-aws-services',
license='private',
packages=[
'arcimoto_aws_services'
],
install_requires=[
'boto3',
'botocore',
'cognito',
'datetime',
'jsonschema',
'path',
'uuid'
]
)