-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (27 loc) · 913 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
32
33
34
from setuptools import setup
install_instructions = """\
# Experimental awslambdaric type stubs
This package contains type stubs to provide more precise
static types and type inference for awslambdaric.
## Installation
```console
$ pip install awslambdaric-stubs
```
"""
setup(
name="awslambdaric-stubs",
description="Stubs for AWS Lambda Python Runtime Interface Client(awslambdaric)",
long_description=install_instructions,
long_description_content_type='text/markdown',
version="0.1.0",
author='Eduard Iskandarov',
author_email='eduard.iskandarov@yandex.ru',
license='MIT License',
url="https://github.com/toidi/awslambdaric-stubs",
package_data={"awslambdaric-stubs": ["__init__.pyi", "lambda_context.pyi"]},
packages=["awslambdaric-stubs"],
classifiers=[
'Development Status :: 3 - Alpha',
'Programming Language :: Python :: 3'
],
)