-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
26 lines (22 loc) · 878 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
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-release
__version__ = '1.2.3'
setuptools.setup(
name='arcimoto',
version=__version__,
author='Cord Slatton',
author_email='[email protected]',
description='The package and dependencies to build the Arcimoto Global Dependencies Lambda Layer that is attached to each lambda during deployment',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://bitbucket.org/arcimotocode1/arcimoto-lambda-global-dependencies',
license='private',
packages=[
'arcimoto',
'arcimoto_aws_services',
'arcimoto_aws_services.arcimoto_aws_services'
],
install_requires=['cerberus', 'psycopg2'],
)