-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (25 loc) · 1.02 KB
/
setup.py
File metadata and controls
30 lines (25 loc) · 1.02 KB
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
import os
from setuptools import setup
from awsimple.__version__ import __version__, __title__, __author__, __author_email__, __url__, __download_url__, __description__
readme_file_path = os.path.join("readme.md")
with open(readme_file_path, encoding="utf-8") as f:
long_description = "\n" + f.read()
setup(
name=__title__,
description=__description__,
long_description=long_description,
long_description_content_type="text/markdown",
version=__version__,
author=__author__,
author_email=__author_email__,
license="MIT License",
url=__url__,
download_url=__download_url__,
keywords=["aws", "cloud", "storage", "database", "dynamodb", "s3"],
packages=[__title__],
package_data={__title__: [readme_file_path, "py.typed"]},
install_requires=["boto3", "typeguard", "hashy>=0.1.1", "dictim", "appdirs", "tobool", "urllib3", "python-dateutil", "yasf", "strif"],
project_urls={"Documentation": "https://awsimple.readthedocs.io/"},
classifiers=[],
python_requires=">3.10",
)