-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
25 lines (21 loc) · 872 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
from setuptools import find_packages, setup
PKG_NAME = "xoto3"
about: dict = dict()
exec(open(f"{PKG_NAME}/__about__.py").read(), about)
with open("README.md") as fh:
long_description = fh.read()
setup(
name=PKG_NAME,
version=about["__version__"],
author=about["__author__"],
author_email=about["__author_email__"],
url="https://github.com/xoeye/xoto3",
description="High level utilities for a subset of boto3 operations common for AWS serverless development in Python.",
long_description=long_description,
long_description_content_type="text/markdown",
packages=find_packages(),
package_data={"": ["py.typed"]},
python_requires=">=3.7", # contextvars
install_requires=["boto3 >= 1.9", "typing-extensions >= 3.7",],
# it is important to keep these install_requires basically in sync with the Pipfile as well.
)