summaryrefslogtreecommitdiff
path: root/tests/testdata/complex-dist/setup.py
diff options
context:
space:
mode:
authorAlex Grönholm <alex.gronholm@nextday.fi>2021-12-24 01:27:26 +0200
committerAlex Grönholm <alex.gronholm@nextday.fi>2021-12-24 01:45:01 +0200
commit5eb690c72ea59bc0f8a2fa34d3993ebe3dbe0d38 (patch)
treedff2a2103314f0fe6c5cc53b91a120f59edf78d3 /tests/testdata/complex-dist/setup.py
parent64d0b8d779b5b41bacea2ef3b59f3e06f0e683ed (diff)
downloadwheel-git-5eb690c72ea59bc0f8a2fa34d3993ebe3dbe0d38.tar.gz
Adopted black and reformatted the codebase to match
Diffstat (limited to 'tests/testdata/complex-dist/setup.py')
-rw-r--r--tests/testdata/complex-dist/setup.py39
1 files changed, 20 insertions, 19 deletions
diff --git a/tests/testdata/complex-dist/setup.py b/tests/testdata/complex-dist/setup.py
index 632ae3f..70d85df 100644
--- a/tests/testdata/complex-dist/setup.py
+++ b/tests/testdata/complex-dist/setup.py
@@ -1,21 +1,22 @@
from setuptools import setup
-setup(name='complex-dist',
- version='0.1',
- description='Another testing distribution \N{SNOWMAN}',
- long_description='Another testing distribution \N{SNOWMAN}',
- author="Illustrious Author",
- author_email="illustrious@example.org",
- url="http://example.org/exemplary",
- packages=['complexdist'],
- setup_requires=["wheel", "setuptools"],
- install_requires=["quux", "splort"],
- extras_require={'simple': ['simple.dist']},
- tests_require=["foo", "bar>=10.0.0"],
- entry_points={
- 'console_scripts': [
- 'complex-dist=complexdist:main',
- 'complex-dist2=complexdist:main',
- ],
- },
- )
+setup(
+ name="complex-dist",
+ version="0.1",
+ description="Another testing distribution \N{SNOWMAN}",
+ long_description="Another testing distribution \N{SNOWMAN}",
+ author="Illustrious Author",
+ author_email="illustrious@example.org",
+ url="http://example.org/exemplary",
+ packages=["complexdist"],
+ setup_requires=["wheel", "setuptools"],
+ install_requires=["quux", "splort"],
+ extras_require={"simple": ["simple.dist"]},
+ tests_require=["foo", "bar>=10.0.0"],
+ entry_points={
+ "console_scripts": [
+ "complex-dist=complexdist:main",
+ "complex-dist2=complexdist:main",
+ ],
+ },
+)