Skip to content

Commit ccd9d44

Browse files
author
Janos Tolgyesi
committed
Blacking setup.py
1 parent 156ac4d commit ccd9d44

File tree

2 files changed

+28
-25
lines changed

2 files changed

+28
-25
lines changed

setup.cfg

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@ commit = True
44
tag = True
55

66
[bumpversion:file:setup.py]
7-
search = version='{current_version}'
8-
replace = version='{new_version}'
7+
search = version="{current_version}"
8+
replace = version="{new_version}"
99

1010
[bumpversion:file:dynamodb_mapping/__init__.py]
11-
search = __version__ = '{current_version}'
12-
replace = __version__ = '{new_version}'
11+
search = __version__ = "{current_version}"
12+
replace = __version__ = "{new_version}"
1313

1414
[bdist_wheel]
1515
universal = 1

setup.py

Lines changed: 24 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -4,41 +4,44 @@
44

55
from setuptools import setup, find_packages
66

7-
with open('README.rst') as readme_file:
7+
with open("README.rst") as readme_file:
88
readme = readme_file.read()
99

10-
with open('HISTORY.rst') as history_file:
10+
with open("HISTORY.rst") as history_file:
1111
history = history_file.read()
1212

13-
requirements = [ 'boto3' ]
13+
requirements = ["boto3"]
1414

15-
test_requirements = ['pytest>=3', 'pytest-mock>=3', ]
15+
test_requirements = [
16+
"pytest>=3",
17+
"pytest-mock>=3",
18+
]
1619

1720
setup(
1821
author="Janos Tolgyesi",
19-
author_email='janos.tolgyesi@gmail.com',
20-
python_requires='>=3.8',
22+
author_email="janos.tolgyesi@gmail.com",
23+
python_requires=">=3.8",
2124
classifiers=[
22-
'Development Status :: 2 - Pre-Alpha',
23-
'Intended Audience :: Developers',
24-
'License :: OSI Approved :: MIT License',
25-
'Natural Language :: English',
26-
'Programming Language :: Python :: 3',
27-
'Programming Language :: Python :: 3.8',
28-
'Programming Language :: Python :: 3.9',
29-
'Programming Language :: Python :: 3.10',
25+
"Development Status :: 2 - Pre-Alpha",
26+
"Intended Audience :: Developers",
27+
"License :: OSI Approved :: MIT License",
28+
"Natural Language :: English",
29+
"Programming Language :: Python :: 3",
30+
"Programming Language :: Python :: 3.8",
31+
"Programming Language :: Python :: 3.9",
32+
"Programming Language :: Python :: 3.10",
3033
],
3134
description="A Python dictionary-like interface for an Amazon DynamoDB table.",
3235
install_requires=requirements,
3336
license="MIT license",
34-
long_description=readme + '\n\n' + history,
37+
long_description=readme + "\n\n" + history,
3538
include_package_data=True,
36-
keywords='dynamodb_mapping',
37-
name='dynamodb_mapping',
38-
packages=find_packages(include=['dynamodb_mapping', 'dynamodb_mapping.*']),
39-
test_suite='tests',
39+
keywords="dynamodb_mapping",
40+
name="dynamodb_mapping",
41+
packages=find_packages(include=["dynamodb_mapping", "dynamodb_mapping.*"]),
42+
test_suite="tests",
4043
tests_require=test_requirements,
41-
url='https://github.com/mrtj/dynamodb_mapping',
42-
version='0.1.0',
44+
url="https://github.com/mrtj/dynamodb_mapping",
45+
version="0.1.0",
4346
zip_safe=False,
4447
)

0 commit comments

Comments
 (0)