|
4 | 4 |
|
5 | 5 | from setuptools import setup, find_packages |
6 | 6 |
|
7 | | -with open('README.rst') as readme_file: |
| 7 | +with open("README.rst") as readme_file: |
8 | 8 | readme = readme_file.read() |
9 | 9 |
|
10 | | -with open('HISTORY.rst') as history_file: |
| 10 | +with open("HISTORY.rst") as history_file: |
11 | 11 | history = history_file.read() |
12 | 12 |
|
13 | | -requirements = [ 'boto3' ] |
| 13 | +requirements = ["boto3"] |
14 | 14 |
|
15 | | -test_requirements = ['pytest>=3', 'pytest-mock>=3', ] |
| 15 | +test_requirements = [ |
| 16 | + "pytest>=3", |
| 17 | + "pytest-mock>=3", |
| 18 | +] |
16 | 19 |
|
17 | 20 | setup( |
18 | 21 | 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", |
21 | 24 | 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", |
30 | 33 | ], |
31 | 34 | description="A Python dictionary-like interface for an Amazon DynamoDB table.", |
32 | 35 | install_requires=requirements, |
33 | 36 | license="MIT license", |
34 | | - long_description=readme + '\n\n' + history, |
| 37 | + long_description=readme + "\n\n" + history, |
35 | 38 | 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", |
40 | 43 | 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", |
43 | 46 | zip_safe=False, |
44 | 47 | ) |
0 commit comments