From 4e20062e135e40c547ac515db973f581540275b3 Mon Sep 17 00:00:00 2001 From: Troy Raen Date: Sat, 8 Mar 2025 22:23:58 -0800 Subject: [PATCH] Run black on setup.py --- setup.py | 36 +++++++++++++++--------------------- 1 file changed, 15 insertions(+), 21 deletions(-) diff --git a/setup.py b/setup.py index 68a93b00..42bede33 100644 --- a/setup.py +++ b/setup.py @@ -27,43 +27,37 @@ # Get the long description from the README file # long_description = (here / 'README.md').read_text(encoding='utf-8') -with open('docs/requirements.txt', encoding='utf-8') as f: +with open("docs/requirements.txt", encoding="utf-8") as f: requirements = f.read().splitlines() setup( - name='pitt_google_broker', # Required - version='0.5.0', # Required - description='A Google Cloud-based astronomical alert broker.', + name="pitt_google_broker", # Required + version="0.5.0", # Required + description="A Google Cloud-based astronomical alert broker.", # long_description=long_description, # long_description_content_type='text/markdown', classifiers=[ - 'Development Status :: 3 - Alpha', - 'Intended Audience :: Science/Research', - 'Topic :: Scientific/Engineering :: Astronomy', - 'Topic :: Scientific/Engineering :: Physics', - 'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)', - 'Programming Language :: Python :: 3', - 'Programming Language :: Python :: 3 :: Only', + "Development Status :: 3 - Alpha", + "Intended Audience :: Science/Research", + "Topic :: Scientific/Engineering :: Astronomy", + "Topic :: Scientific/Engineering :: Physics", + "License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3 :: Only", ], - keywords='astronomy, alert broker', - - url='https://github.com/mwvgroup/Pitt-Google-Broker', - author='Troy Raen', - author_email='troy.raen@pitt.edu', - + keywords="astronomy, alert broker", + url="https://github.com/mwvgroup/Pitt-Google-Broker", + author="Troy Raen", + author_email="troy.raen@pitt.edu", packages=find_packages(), # Required - # For an analysis of "install_requires" vs pip's requirements files see: # https://packaging.python.org/en/latest/requirements.html install_requires=requirements, - # https://setuptools.readthedocs.io/en/latest/userguide/dependency_management.html#optional-dependencies # extras_require={ # "beam": ["apache_beam[gcp]"], # }, - # python_requires='>=3.6, <4', - # If there are data files included in your packages that need to be # installed, specify them here. # package_data={ # Optional