|
6 | 6 |
|
7 | 7 | here = path.abspath(path.dirname(__file__)) |
8 | 8 |
|
9 | | -with open(path.join(here, 'README.md'), encoding='utf-8') as f: |
| 9 | +with open(path.join(here, "README.md"), encoding="utf-8") as f: |
10 | 10 | long_description = f.read() |
11 | 11 |
|
12 | 12 | setup( |
13 | | - name='datadog_lambda', |
| 13 | + name="datadog_lambda", |
14 | 14 | version=__version__, |
15 | | - description='The Datadog AWS Lambda Layer', |
| 15 | + description="The Datadog AWS Lambda Layer", |
16 | 16 | long_description=long_description, |
17 | | - long_description_content_type='text/markdown', |
18 | | - url='https://github.com/DataDog/datadog-lambda-layer-python', |
19 | | - author='Datadog, Inc.', |
20 | | - author_email='dev@datadoghq.com', |
| 17 | + long_description_content_type="text/markdown", |
| 18 | + url="https://github.com/DataDog/datadog-lambda-layer-python", |
| 19 | + author="Datadog, Inc.", |
| 20 | + author_email="dev@datadoghq.com", |
21 | 21 | classifiers=[ |
22 | | - 'Programming Language :: Python :: 2.7', |
23 | | - 'Programming Language :: Python :: 3.6', |
24 | | - 'Programming Language :: Python :: 3.7', |
25 | | - 'Programming Language :: Python :: 3.8', |
| 22 | + "Programming Language :: Python :: 2.7", |
| 23 | + "Programming Language :: Python :: 3.6", |
| 24 | + "Programming Language :: Python :: 3.7", |
| 25 | + "Programming Language :: Python :: 3.8", |
26 | 26 | ], |
27 | | - keywords='datadog aws lambda layer', |
28 | | - packages=['datadog_lambda'], |
29 | | - python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, <4', |
| 27 | + keywords="datadog aws lambda layer", |
| 28 | + packages=["datadog_lambda"], |
| 29 | + python_requires=">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, <4", |
30 | 30 | install_requires=[ |
31 | | - 'aws-xray-sdk==2.4.3', |
32 | | - 'datadog==0.32.0', |
33 | | - 'ddtrace==0.31.0', |
34 | | - 'wrapt==1.11.2', |
35 | | - 'setuptools==42.0.2', |
| 31 | + "aws-xray-sdk==2.4.3", |
| 32 | + "datadog==0.32.0", |
| 33 | + "wrapt==1.11.2", |
| 34 | + "setuptools==42.0.2", |
36 | 35 | ], |
37 | 36 | extras_require={ |
38 | | - 'dev': [ |
39 | | - 'nose2==0.9.1', |
40 | | - 'flake8==3.7.9', |
41 | | - 'requests==2.22.0', |
42 | | - 'boto3==1.10.33', |
43 | | - ] |
44 | | - } |
| 37 | + "dev": ["nose2==0.9.1", "flake8==3.7.9", "requests==2.22.0", "boto3==1.10.33"] |
| 38 | + }, |
45 | 39 | ) |
0 commit comments