forked from brunobelloni/AioPynamoDB
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
50 lines (47 loc) · 1.56 KB
/
Copy pathsetup.py
File metadata and controls
50 lines (47 loc) · 1.56 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
from pathlib import Path
from setuptools import find_packages, setup
install_requires = [
"aiobotocore>=3.7.0,<4",
'typing-extensions>=4.15.0; python_version<"3.11"',
]
setup(
name="as-aiopynamodb",
version=__import__("aiopynamodb").__version__,
packages=find_packages(
exclude=(
"examples",
"tests",
"typing_tests",
"tests.integration",
)
),
url="https://github.com/AppSolves/AioPynamoDB",
project_urls={
"Source": "https://github.com/AppSolves/AioPynamoDB",
"Issues": "https://github.com/AppSolves/AioPynamoDB/issues",
"Upstream": "https://github.com/brunobelloni/AioPynamoDB",
},
author="Jharrod LaFon",
author_email="jlafon@eyesopen.com",
description="An Async Pythonic Interface to DynamoDB",
long_description=Path("README.rst").read_text("utf-8"),
long_description_content_type="text/x-rst",
zip_safe=False,
license="MIT",
keywords="python dynamodb amazon async asyncio aiobotocore",
python_requires=">=3.10",
install_requires=install_requires,
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Programming Language :: Python",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
],
extras_require={
"signals": ["blinker>=1.3,<2.0"],
},
package_data={"aiopynamodb": ["py.typed"]},
)