Skip to content

Commit b751bb3

Browse files
committed
Fix PEP 625 warning
1 parent 1de691c commit b751bb3

1 file changed

Lines changed: 16 additions & 11 deletions

File tree

setup.py

Lines changed: 16 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
}
2323

2424
setup(
25-
name="PyDynamoDB",
25+
name="pydynamodb",
2626
version=VERSION,
2727
description="Python DB API 2.0 (PEP 249) client for Amazon DynamoDB",
2828
long_description=open(readme).read(),
@@ -31,17 +31,17 @@
3131
author="Peng Ren",
3232
author_email="passren9099@hotmail.com",
3333
license="MIT",
34-
python_requires=">=3.7",
34+
python_requires=">=3.8",
3535
classifiers=[
3636
"Development Status :: 4 - Beta",
3737
"Intended Audience :: Developers",
38-
'Programming Language :: Python',
3938
"Programming Language :: Python",
40-
'Programming Language :: Python :: 3.8',
41-
'Programming Language :: Python :: 3.9',
42-
'Programming Language :: Python :: 3.10',
43-
'Programming Language :: Python :: 3.11',
44-
'Programming Language :: Python :: 3.12',
39+
"Programming Language :: Python",
40+
"Programming Language :: Python :: 3.8",
41+
"Programming Language :: Python :: 3.9",
42+
"Programming Language :: Python :: 3.10",
43+
"Programming Language :: Python :: 3.11",
44+
"Programming Language :: Python :: 3.12",
4545
"Operating System :: OS Independent",
4646
"License :: OSI Approved :: MIT License",
4747
],
@@ -51,9 +51,14 @@
5151
"Source": "https://github.com/passren/PyDynamoDB",
5252
"Tracker": "https://github.com/passren/PyDynamoDB/issues",
5353
},
54-
packages=find_packages(include=[
55-
"pydynamodb", "pydynamodb.sql", "pydynamodb.sqlalchemy_dynamodb", "pydynamodb.superset_dynamodb"
56-
]),
54+
packages=find_packages(
55+
include=[
56+
"pydynamodb",
57+
"pydynamodb.sql",
58+
"pydynamodb.sqlalchemy_dynamodb",
59+
"pydynamodb.superset_dynamodb",
60+
]
61+
),
5762
include_package_data=True,
5863
install_requires=install_requires,
5964
extras_require=extras_require,

0 commit comments

Comments
 (0)